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
axum = { version = "0.8", features = ["tracing"] }
20
20
axum-extra = { version = "0.12", features = ["typed-header"] }
21
-
# If we use the feature "tls-rustls" it will pull in the "aws-lc-rs" crate, which as of 2024-08-16 I did not get to build in the "make run-dev" workflow :/
22
-
axum-server = { version = "0.7", features = ["tls-rustls-no-provider"] }
21
+
axum-server = { version = "0.8", features = ["tls-rustls"] }
23
22
bincode = { version = "2.0", features = ["serde"] }
24
23
chrono = "0.4"
25
24
clap = { version = "4.5", features = ["derive"] }
@@ -29,10 +28,10 @@ http = "1.1"
29
28
http-serde = "2.1"
30
29
humantime-serde = "1.1"
31
30
indoc = "2.0"
32
-
k8s-openapi = { version = "0.26", default-features = false, features = [
33
-
"v1_34",
31
+
k8s-openapi = { version = "0.27", default-features = false, features = [
32
+
"v1_35",
34
33
] }
35
-
kube = { version = "2.0", default-features = false, features = [
34
+
kube = { version = "3.0", default-features = false, features = [
36
35
"client",
37
36
"jsonpatch",
38
37
"runtime",
@@ -50,22 +49,22 @@ prometheus = "0.13"
50
49
prusto = "0.5"
51
50
pyo3 = { version = "0.27", features = ["auto-initialize"] }
52
51
rand = "0.9"
53
-
redis = { version = "0.32", default-features = false, features = [
52
+
redis = { version = "1.0", default-features = false, features = [
54
53
"acl",
55
54
"tokio-rustls-comp",
56
55
"cluster",
57
56
"cluster-async",
58
57
"connection-manager",
59
-
"keep-alive",
60
58
"script",
61
59
] }
62
60
regex = "1.10"
63
-
reqwest = { version = "0.12", default-features = false, features = [
64
-
"rustls-tls",
61
+
reqwest = { version = "0.13", default-features = false, features = [
62
+
"rustls",
65
63
"gzip",
66
64
"json",
67
65
"cookies",
68
66
] }
67
+
rustls = "0.23"
69
68
rstest = "0.26"
70
69
serde = { version = "1.0", features = ["derive"] }
71
70
serde_json = { version = "1.0", features = ["raw_value"] }
0 commit comments