You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.7.0" }
13
13
14
-
axum = "0.8.1"
14
+
axum = { version = "0.8.1", features = ["http2"] }
15
15
chrono = { version = "0.4.38", default-features = false }
16
16
clap = { version = "4.5.17", features = ["derive", "cargo", "env"] }
17
17
const_format = "0.2.33"
@@ -33,6 +33,7 @@ itertools = "0.14.0"
33
33
json-patch = "4.0.0"
34
34
k8s-openapi = { version = "0.25.0", default-features = false, features = ["schemars", "v1_33"] }
35
35
# We use rustls instead of openssl for easier portability, e.g. so that we can build stackablectl without the need to vendor (build from source) openssl
36
+
# We use ring instead of aws-lc-rs, as this currently fails to build in "make run-dev"
36
37
kube = { version = "1.0.0", default-features = false, features = ["client", "jsonpatch", "runtime", "derive", "rustls-tls", "ring"] }
37
38
opentelemetry = "0.29.1"
38
39
opentelemetry_sdk = { version = "0.29.0", features = ["rt-tokio"] }
@@ -64,7 +65,8 @@ syn = "2.0.77"
64
65
tempfile = "3.12.0"
65
66
time = { version = "0.3.36" }
66
67
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread", "fs"] }
67
-
tokio-rustls = "0.26.0"
68
+
# We use ring instead of aws-lc-rs, as this currently fails to build in "make run-dev"
69
+
tokio-rustls = { version = "0.26.0", default-features = false, features = ["ring", "logging", "tls12"] }
68
70
tokio-test = "0.4.4"
69
71
tower = { version = "0.5.1", features = ["util"] }
70
72
tower-http = { version = "0.6.1", features = ["trace"] }
0 commit comments