-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdeps.edn
More file actions
31 lines (27 loc) · 1.12 KB
/
deps.edn
File metadata and controls
31 lines (27 loc) · 1.12 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
{:paths ["src" "resources"]
: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 "ba63b5e6a79ee159187a8519a040ef282f501563"}
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"}}}}}