forked from replikativ/konserve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
41 lines (41 loc) · 2.72 KB
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{:paths ["src"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/clojurescript {:mvn/version "1.11.51"}
org.clojure/data.fressian {:mvn/version "1.0.0"} ;; for filestore
fress/fress {:mvn/version "0.4.0"}
io.replikativ/incognito {:mvn/version "0.3.66"}
io.replikativ/hasch {:mvn/version "0.3.7"}
io.replikativ/superv.async {:mvn/version "0.3.43"}
org.clojars.mmb90/cljs-cache {:mvn/version "0.1.4"}
;; reactivate for nodejs support
;com.google.javascript/closure-compiler-unshaded {:mvn/version "v20190325"}
;org.clojure/google-closure-library {:mvn/version "0.0-20190213-2033d5d9"}
org.lz4/lz4-java {:mvn/version "1.8.0"}
com.taoensso/timbre {:mvn/version "5.2.1"}}
:aliases {:cljs {:extra-deps {thheller/shadow-cljs {:mvn/version "2.19.0"}
binaryage/devtools {:mvn/version "1.0.6"}}
:extra-paths ["test"]}
:dev {:extra-deps {criterium/criterium {:mvn/version "0.4.6"}
metasoarous/oz {:mvn/version "2.0.0-alpha5"}
org.clojure/tools.cli {:mvn/version "1.0.206"}}
:extra-paths ["benchmark/src"]}
:benchmark {:extra-deps {metasoarous/oz {:mvn/version "2.0.0-alpha5"}
org.clojure/tools.cli {:mvn/version "1.0.206"}}
:extra-paths ["benchmark/src"]
:main-opts ["-m" "benchmark.core"]}
:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.66.1034"}
org.clojure/test.check {:mvn/version "1.1.1"}}
:extra-paths ["test"]
:main-opts ["-e" "(set! *warn-on-reflection* true)"]}
:build {:deps {io.github.seancorfield/build-clj {:git/tag "v0.8.0"
:git/sha "9bd8b8a"}
borkdude/gh-release-artifact {:git/url "https://github.com/borkdude/gh-release-artifact"
:sha "cf082df46a648178d1904e9cbcb787d8136a35c6"}
babashka/babashka.curl {:mvn/version "0.1.2"}
babashka/fs {:mvn/version "0.1.6"}
cheshire/cheshire {:mvn/version "5.10.2"}}
:ns-default build}
:format {:extra-deps {cljfmt/cljfmt {:mvn/version "0.8.0"}}
:main-opts ["-m" "cljfmt.main" "check"]}
:ffix {:extra-deps {cljfmt/cljfmt {:mvn/version "0.8.0"}}
:main-opts ["-m" "cljfmt.main" "fix"]}}}