-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdeps.edn
More file actions
35 lines (31 loc) · 1.26 KB
/
Copy pathdeps.edn
File metadata and controls
35 lines (31 loc) · 1.26 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
35
{:paths ["src" "resources" "classes"]
:deps
{org.clojure/clojure {:mvn/version "1.12.2"}
org.clojure/data.json {:mvn/version "2.5.1"}
org.clojure/core.async {:mvn/version "1.7.701"}
;; HTTP
http-kit/http-kit {:mvn/version "2.9.0-beta1"}
;; COMPRESSION
com.aayushatharva.brotli4j/brotli4j {:mvn/version "1.18.0"}
;; Assumes you deploy uberjar on linux x86_64
com.aayushatharva.brotli4j/native-linux-x86_64 {:mvn/version "1.18.0"}
io.netty/netty-buffer {:mvn/version "4.1.119.Final"}
;; TEMPLATING
dev.onionpancakes/chassis {:mvn/version "1.0.365"}
;; SQLITE
andersmurphy/sqlite4clj
;; {:local/root "../sqlite4clj"}
{:git/url "https://github.com/andersmurphy/sqlite4clj"
:git/sha "8ec0fd5e38faa1195fe17ce06cf18c5f7088dd5d"}
com.github.seancorfield/honeysql {:mvn/version "2.7.1325"}}
:aliases
{:dev
{:extra-paths ["dev"]
:extra-deps
{com.aayushatharva.brotli4j/native-osx-x86_64 {:mvn/version "1.18.0"}
com.aayushatharva.brotli4j/native-osx-aarch64 {:mvn/version "1.18.0"}
com.aayushatharva.brotli4j/native-linux-aarch64 {:mvn/version "1.18.0"}}}
:build
{:deps {io.github.clojure/tools.build
{:git/tag "v0.10.14" :git/sha "1176afd"}}
:ns-default build}}}