This commit is contained in:
Travis Shears 2025-08-11 13:54:22 +02:00
parent 32355ae894
commit 0f3caef7e7
3 changed files with 62 additions and 4 deletions

View file

@ -1,5 +1,6 @@
{:paths ["src"]
:deps {clj-http/clj-http {:mvn/version "3.13.1"}
:deps {;; http client
clj-http/clj-http {:mvn/version "3.13.1"}
;; logging
com.taoensso/telemere {:mvn/version "1.0.0"}
;; schema validation
@ -7,10 +8,17 @@
;; scheduling
jarohen/chime {:mvn/version "0.3.3"}
org.clojure/core.async {:mvn/version "1.8.741"}
;; json decoding
;; json
cheshire/cheshire {:mvn/version "6.0.0"}
;; metosin/muuntaja {:mvn/version "0.6.11"}
org.clojure/clojure {:mvn/version "1.12.1"}}
org.clojure/clojure {:mvn/version "1.12.1"}
;; api
ring/ring-core {:mvn/version "1.13.0"}
ring/ring-jetty-adapter {:mvn/version "1.13.0"}
org.slf4j/slf4j-simple {:mvn/version "2.0.16"}
metosin/muuntaja {:mvn/version "0.6.11"}
metosin/reitit {:mvn/version "0.9.1"}}
:aliases
{;; Run with clj -T:build function-in-build
:build {:deps {io.github.clojure/tools.build {:git/tag "v0.10.9" :git/sha "e405aac"}}