12 lines
516 B
Clojure
12 lines
516 B
Clojure
(defproject clj-webtoolbox "0.0.1"
|
|
:description "Miscellaneous helper functions and macros for Ring and Compojure."
|
|
:url "https://github.com/gered/clj-webtoolbox"
|
|
:license {:name "MIT License"
|
|
:url "http://opensource.org/licenses/MIT"}
|
|
|
|
:dependencies [[org.clojure/clojure "1.6.0"]
|
|
[compojure "1.3.1" :scope "provided"]
|
|
[ring/ring-core "1.3.1" :scope "provided"]
|
|
[cheshire "5.3.1"]
|
|
[prismatic/schema "0.3.3"]])
|