Skip to content

Commit 8c9ce4f

Browse files
committed
fix: Parse entrire apiVersion and return entire objects again
1 parent d40a048 commit 8c9ce4f

File tree

27 files changed

+1623
-1091
lines changed

27 files changed

+1623
-1091
lines changed

Cargo.lock

Lines changed: 10 additions & 186 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repository = "https://github.com/stackabletech/operator-rs"
1111
[workspace.dependencies]
1212
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.7.0" }
1313

14-
axum = "0.8.1"
14+
axum = { version = "0.8.1", features = ["http2"] }
1515
chrono = { version = "0.4.38", default-features = false }
1616
clap = { version = "4.5.17", features = ["derive", "cargo", "env"] }
1717
const_format = "0.2.33"
@@ -64,7 +64,8 @@ syn = "2.0.77"
6464
tempfile = "3.12.0"
6565
time = { version = "0.3.36" }
6666
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread", "fs"] }
67-
tokio-rustls = "0.26.0"
67+
# Use ring instead of aws-lc-rs
68+
tokio-rustls = { version = "0.26.0", default-features = false, features = ["ring", "logging", "tls12"] }
6869
tokio-test = "0.4.4"
6970
tower = { version = "0.5.1", features = ["util"] }
7071
tower-http = { version = "0.6.1", features = ["trace"] }

0 commit comments

Comments
 (0)