-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdeps.edn
More file actions
34 lines (34 loc) · 2.42 KB
/
Copy pathdeps.edn
File metadata and controls
34 lines (34 loc) · 2.42 KB
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
{:paths ["src"]
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
org.clojure/clojurescript {:mvn/version "1.11.132"}
;; 0.3.71: incognito.transit's write handler no longer resolves its two
;; super calls reflectively (incognito#23). hasch itself only uses
;; incognito.base, but it ships the transit namespace, and hasch is
;; compiled into datahike's `dthk` native image, where a reflective
;; call works only if it was registered at build time.
org.replikativ/incognito {:mvn/version "0.3.71"}}
:aliases {:cljs {:extra-deps {thheller/shadow-cljs {:mvn/version "2.28.21"}
binaryage/devtools {:mvn/version "1.0.6"}}
:extra-paths ["test"]}
:dev {:extra-deps {criterium/criterium {:mvn/version "0.4.6"}}}
:test {:extra-deps {lambdaisland/kaocha {:mvn/version "1.77.1236"}
io.github.cognitect-labs/test-runner {:git/tag "v0.5.1"
:git/sha "dfb30dd"}
io.replikativ/datahike {:mvn/version "0.6.1531"}
io.replikativ/hasch {:local/root "."}}
:main-opts ["-m" "kaocha.runner"]
:extra-paths ["test"]}
:bench {:extra-deps {criterium/criterium {:mvn/version "0.4.6"}}
:jvm-opts ["-Xmx2g"]}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.9.3"}
slipset/deps-deploy {:mvn/version "0.2.0"}
borkdude/gh-release-artifact {:git/url "https://github.com/borkdude/gh-release-artifact"
:git/sha "a83ee8da47d56a80b6380cbb6b4b9274048067bd"}
babashka/babashka.curl {:mvn/version "0.1.1"}
babashka/fs {:mvn/version "0.1.2"}
cheshire/cheshire {:mvn/version "5.10.2"}}
:ns-default build}
:ffix {:extra-deps {cljfmt/cljfmt {:mvn/version "0.8.0"}}
:main-opts ["-m" "cljfmt.main" "fix"]}
:format {:extra-deps {cljfmt/cljfmt {:mvn/version "0.8.0"}}
:main-opts ["-m" "cljfmt.main" "check"]}}}