forked from funcool/cats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
17 lines (17 loc) · 898 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defproject funcool/cats "2.4.1"
:description "Category Theory abstractions for Clojure"
:url "https://github.com/funcool/cats"
:license {:name "BSD (2 Clause)"
:url "http://opensource.org/licenses/BSD-2-Clause"}
:dependencies [[org.clojure/clojure "1.9.0" :scope "provided"]
[org.clojure/clojurescript "1.10.439" :scope "provided"]
[org.clojure/core.async "0.4.474" :scope "provided"]
[org.clojure/test.check "0.9.0" :scope "provided"]
[org.clojure/core.match "0.3.0-alpha4" :scope "provided"]
[manifold "0.1.6" :scope "provided"]
[funcool/promesa "5.1.0" :scope "provided"]]
:deploy-repositories {"releases" :clojars
"snapshots" :clojars}
:source-paths ["src"]
:test-paths ["test"]
:jar-exclusions [#"\.swp|\.swo|user\.clj"])