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
Copy file name to clipboardExpand all lines: Cargo.toml
+11-10Lines changed: 11 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
[workspace.package]
2
-
version = "0.46.0"
2
+
version = "0.48.0"
3
3
authors = ["Stackable GmbH <info@stackable.de>"]
4
4
license = "Apache-2.0"
5
5
edition = "2021"
@@ -18,30 +18,31 @@ repository.workspace = true
18
18
chrono = { version = "0.4.26", default-features = false }
19
19
clap = { version = "4.3.19", features = ["derive", "cargo", "env"] }
20
20
const_format = "0.2.31"
21
+
derivative = "2.2.0"
21
22
either = "1.9.0"
22
23
futures = "0.3.28"
23
24
json-patch = "1.0.0"
24
25
k8s-openapi = { version = "0.19.0", default-features = false, features = ["schemars", "v1_27"] }
25
-
kube = { version = "0.85.0", features = ["jsonpatch", "runtime", "derive"] }
26
+
# We use rustls instead of openssl for easier portablitly, e.g. so that we can build stackablectl without the need to vendor (build from source) openssl
27
+
kube = { version = "0.85.0", default-features = false, features = ["client", "jsonpatch", "runtime", "derive", "rustls-tls"] }
26
28
lazy_static = "1.4.0"
27
-
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.4.0" }
29
+
opentelemetry = { version = "0.20.0", features = ["rt-tokio"] }
30
+
opentelemetry-jaeger = { version = "0.19.0", features = ["rt-tokio"] }
31
+
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.5.0" }
28
32
rand = "0.8.5"
29
33
regex = "1.9.3"
30
34
schemars = "0.8.12"
31
-
serde = { version = "=1.0.171", features = ["derive"] }# We need to pin 1.0.171 as of now, as otherwise Nix builds break because of https://github.com/serde-rs/serde/issues/2538
35
+
serde = { version = "1.0.184", features = ["derive"] }
0 commit comments