|
1 | 1 | ;; you'll need to run the script at `deps/lein-to-deps` after changing any dependencies
|
2 |
| -(def netty-version "4.1.118.Final") |
3 |
| -(def brotli-version "1.16.0") |
| 2 | +(def netty-version "4.1.122.Final") |
| 3 | +(def brotli-version "1.18.0") |
4 | 4 |
|
5 | 5 |
|
6 | 6 | (defproject aleph (or (System/getenv "PROJECT_VERSION") "0.8.3")
|
7 | 7 | :description "A framework for asynchronous communication"
|
8 | 8 | :url "https://github.com/clj-commons/aleph"
|
9 | 9 | :license {:name "MIT License"}
|
10 |
| - :dependencies [[org.clojure/clojure "1.11.3"] |
| 10 | + :dependencies [[org.clojure/clojure "1.12.1"] |
11 | 11 | [org.clojure/tools.logging "1.3.0" :exclusions [org.clojure/clojure]]
|
12 | 12 | [manifold "0.4.3" :exclusions [org.clojure/tools.logging]]
|
13 | 13 | [org.clj-commons/byte-streams "0.3.4"]
|
14 | 14 | [org.clj-commons/dirigiste "1.0.4"]
|
15 | 15 | [org.clj-commons/primitive-math "1.0.1"]
|
16 |
| - [potemkin "0.4.7"] |
| 16 | + [potemkin "0.4.8"] |
17 | 17 | [io.netty/netty-transport ~netty-version]
|
18 | 18 | [io.netty/netty-transport-native-epoll ~netty-version :classifier "linux-x86_64"]
|
19 | 19 | [io.netty/netty-transport-native-epoll ~netty-version :classifier "linux-aarch_64"]
|
20 | 20 | [io.netty/netty-transport-native-kqueue ~netty-version :classifier "osx-x86_64"]
|
21 |
| - [io.netty.incubator/netty-incubator-transport-native-io_uring "0.0.25.Final" :classifier "linux-x86_64"] |
22 |
| - [io.netty.incubator/netty-incubator-transport-native-io_uring "0.0.25.Final" :classifier "linux-aarch_64"] |
| 21 | + [io.netty.incubator/netty-incubator-transport-native-io_uring "0.0.26.Final" :classifier "linux-x86_64"] |
| 22 | + [io.netty.incubator/netty-incubator-transport-native-io_uring "0.0.26.Final" :classifier "linux-aarch_64"] |
23 | 23 | [io.netty/netty-codec ~netty-version]
|
24 | 24 | [io.netty/netty-codec-http ~netty-version]
|
25 | 25 | [io.netty/netty-codec-http2 ~netty-version]
|
26 | 26 | [io.netty/netty-handler ~netty-version]
|
27 | 27 | [io.netty/netty-handler-proxy ~netty-version]
|
28 | 28 | [io.netty/netty-resolver ~netty-version]
|
29 | 29 | [io.netty/netty-resolver-dns ~netty-version]
|
30 |
| - [metosin/malli "0.16.1" :exclusions [org.clojure/clojure]]] |
| 30 | + [metosin/malli "0.19.1" :exclusions [org.clojure/clojure]]] |
31 | 31 | :profiles {:dev {:dependencies [[criterium "0.4.6"]
|
32 |
| - [cheshire "5.13.0"] |
33 |
| - [org.slf4j/slf4j-simple "2.0.13"] |
| 32 | + [cheshire "6.0.0"] |
| 33 | + [org.slf4j/slf4j-simple "2.0.17"] |
34 | 34 | [com.cognitect/transit-clj "1.0.333"]
|
35 | 35 | [spootnik/signal "0.2.5"]
|
36 | 36 | ;; This is for dev and testing ONLY, not recommended for prod
|
37 |
| - [org.bouncycastle/bcprov-jdk18on "1.78.1"] |
38 |
| - [org.bouncycastle/bcpkix-jdk18on "1.78.1"] |
| 37 | + [org.bouncycastle/bcprov-jdk18on "1.81"] |
| 38 | + [org.bouncycastle/bcpkix-jdk18on "1.81"] |
39 | 39 | ;;[org.bouncycastle/bctls-jdk18on "1.75"]
|
40 |
| - [io.netty/netty-tcnative-boringssl-static "2.0.65.Final"] |
| 40 | + [io.netty/netty-tcnative-boringssl-static "2.0.72.Final"] |
41 | 41 | ;;[com.aayushatharva.brotli4j/all ~brotli-version]
|
42 | 42 | [com.aayushatharva.brotli4j/brotli4j ~brotli-version]
|
43 | 43 | [com.aayushatharva.brotli4j/service ~brotli-version]
|
|
47 | 47 | [com.aayushatharva.brotli4j/native-osx-aarch64 ~brotli-version]
|
48 | 48 | [com.aayushatharva.brotli4j/native-osx-x86_64 ~brotli-version]
|
49 | 49 | [com.aayushatharva.brotli4j/native-windows-x86_64 ~brotli-version]
|
50 |
| - [com.github.luben/zstd-jni "1.5.6-3"]] |
| 50 | + [com.github.luben/zstd-jni "1.5.7-3"]] |
51 | 51 | :jvm-opts ["-Dorg.slf4j.simpleLogger.defaultLogLevel=debug"
|
52 | 52 | "-Dorg.slf4j.simpleLogger.showThreadName=false"
|
53 | 53 | "-Dorg.slf4j.simpleLogger.showThreadId=true"
|
|
66 | 66 | "-Dio.netty.allocator.type=unpooled"]}
|
67 | 67 | :pedantic {:pedantic? :abort}
|
68 | 68 | :trace {:jvm-opts ["-Dorg.slf4j.simpleLogger.defaultLogLevel=trace"]}
|
69 |
| - :profile {:dependencies [[com.clojure-goes-fast/clj-async-profiler "1.2.2"]] |
| 69 | + :profile {:dependencies [[com.clojure-goes-fast/clj-async-profiler "1.6.2"]] |
70 | 70 | :jvm-opts ["-Djdk.attach.allowAttachSelf"]}}
|
71 | 71 | :java-source-paths ["src-java"]
|
72 | 72 | :test-selectors {:default #(not
|
|
0 commit comments