Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/.clj-kondo/.cache/
/.nrepl-port
.envrc
/.lsp/
39 changes: 19 additions & 20 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,50 +1,49 @@
{:paths
["src" "resources"]
:deps
{org.clojure/clojure {:mvn/version "1.12.0"}
{org.clojure/clojure {:mvn/version "1.12.4"}

;; Web server
ring/ring-core {:mvn/version "1.12.1"}
ring/ring-jetty-adapter {:mvn/version "1.12.1"}
ring/ring-core {:mvn/version "1.15.3"}

;; Routing
metosin/reitit-ring {:mvn/version "0.7.0"}
metosin/reitit-malli {:mvn/version "0.7.0"}
metosin/reitit-ring {:mvn/version "0.10.0"}
metosin/reitit-malli {:mvn/version "0.10.0"}

;; HTML generation
dev.onionpancakes/chassis {:mvn/version "1.0.365"}

;; Compression
com.aayushatharva.brotli4j/brotli4j {:mvn/version "1.18.0"}
io.netty/netty-buffer {:mvn/version "4.1.119.Final"}
com.aayushatharva.brotli4j/brotli4j {:mvn/version "1.20.0"}
io.netty/netty-buffer {:mvn/version "4.2.10.Final"}

;; Server-sent events support
http-kit/http-kit {:mvn/version "2.8.0"}
http-kit/http-kit {:mvn/version "2.9.0-beta3"}

;; Utilities
ring/ring-defaults {:mvn/version "0.5.0"}
ring/ring-defaults {:mvn/version "0.7.0"}

;; JSON
cheshire/cheshire {:mvn/version "6.1.0"}

;; Logging
com.taoensso/telemere {:mvn/version "1.1.0"}}
com.taoensso/telemere {:mvn/version "1.2.1"}}

:aliases
{:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
:extra-deps {org.clojure/test.check {:mvn/version "1.1.3"}
lambdaisland/kaocha {:mvn/version "1.91.1392"}
io.github.pfeodrippe/wally {:mvn/version "0.0.4"}
com.aayushatharva.brotli4j/native-osx-aarch64 {:mvn/version "1.18.0"}
com.aayushatharva.brotli4j/native-osx-x86_64 {:mvn/version "1.18.0"}
com.aayushatharva.brotli4j/native-linux-x86_64 {:mvn/version "1.18.0"}
com.aayushatharva.brotli4j/native-linux-aarch64 {:mvn/version "1.18.0"}}
io.github.pfeodrippe/wally {:mvn/version "0.0.5"}
com.aayushatharva.brotli4j/native-osx-aarch64 {:mvn/version "1.20.0"}
com.aayushatharva.brotli4j/native-osx-x86_64 {:mvn/version "1.20.0"}
com.aayushatharva.brotli4j/native-linux-x86_64 {:mvn/version "1.20.0"}
com.aayushatharva.brotli4j/native-linux-aarch64 {:mvn/version "1.20.0"}}
:main-opts ["-m" "kaocha.runner"]
:exec-fn kaocha.runner/exec-fn
:exec-args {:randomize? false
:fail-fast? true}}

:dev {:extra-deps {com.aayushatharva.brotli4j/native-osx-aarch64 {:mvn/version "1.18.0"}
com.aayushatharva.brotli4j/native-osx-x86_64 {:mvn/version "1.18.0"}
com.aayushatharva.brotli4j/native-linux-x86_64 {:mvn/version "1.18.0"}
com.aayushatharva.brotli4j/native-linux-aarch64 {:mvn/version "1.18.0"}}}}}
:dev {:extra-deps {com.aayushatharva.brotli4j/native-osx-aarch64 {:mvn/version "1.20.0"}
com.aayushatharva.brotli4j/native-osx-x86_64 {:mvn/version "1.20.0"}
com.aayushatharva.brotli4j/native-linux-x86_64 {:mvn/version "1.20.0"}
com.aayushatharva.brotli4j/native-linux-aarch64 {:mvn/version "1.20.0"}}}}}
Loading