11 lines
472 B
Clojure
11 lines
472 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"]])
|