Skip to content

Commit 4e14d57

Browse files
committed
chore: Bump operator-rs to 0.56.0
1 parent ab32002 commit 4e14d57

File tree

8 files changed

+194
-31
lines changed

8 files changed

+194
-31
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,18 @@ built = { version = "0.6", features = ["chrono", "git2"] }
1717
clap = "4.3"
1818
futures = { version = "0.3", features = ["compat"] }
1919
indoc = "2.0"
20+
product-config = { git = "https://github.com/stackabletech/product-config.git", tag = "0.6.0" }
2021
rstest = "0.18"
2122
semver = "1.0"
2223
serde = { version = "1.0", features = ["derive"] }
2324
serde_json = "1.0"
2425
serde_yaml = "0.9"
2526
snafu = "0.7"
26-
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.55.0" }
27+
stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag = "0.56.0" }
2728
strum = { version = "0.25", features = ["derive"] }
2829
tokio = { version = "1.29", features = ["full"] }
2930
tracing = "0.1"
3031
tracing-futures = { version = "0.2", features = ["futures-03"] }
3132

32-
[patch."https://github.com/stackabletech/operator-rs.git"]
33-
stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "docs/vector-process" }
33+
# [patch."https://github.com/stackabletech/operator-rs.git"]
34+
# stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main" }

rust/crd/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ repository.workspace = true
99
publish = false
1010

1111
[dependencies]
12+
product-config.workspace = true
1213
semver.workspace = true
13-
serde.workspace = true
1414
serde_json.workspace = true
15+
serde.workspace = true
1516
snafu.workspace = true
1617
stackable-operator.workspace = true
1718
strum.workspace = true

rust/crd/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ pub mod storage;
55

66
use affinity::get_affinity;
77
use constants::*;
8+
use product_config::types::PropertyNameKind;
89
use security::{AuthenticationConfig, KerberosConfig};
910
use serde::{Deserialize, Serialize};
1011
use snafu::{OptionExt, ResultExt, Snafu};
@@ -29,7 +30,6 @@ use stackable_operator::{
2930
},
3031
kube::{runtime::reflector::ObjectRef, CustomResource, ResourceExt},
3132
labels::role_group_selector_labels,
32-
product_config::types::PropertyNameKind,
3333
product_config_utils::{ConfigError, Configuration},
3434
product_logging,
3535
product_logging::spec::{ContainerLogConfig, Logging},

rust/operator/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@ stackable-hdfs-crd = { path = "../crd" }
1313

1414
futures.workspace = true
1515
indoc.workspace = true
16-
serde.workspace = true
16+
product-config.workspace = true
1717
serde_json.workspace = true
18+
serde.workspace = true
1819
snafu.workspace = true
1920
stackable-operator.workspace = true
2021
strum.workspace = true
2122
tokio.workspace = true
22-
tracing.workspace = true
2323
tracing-futures.workspace = true
24+
tracing.workspace = true
2425

2526
[dev-dependencies]
2627
rstest.workspace = true

0 commit comments

Comments
 (0)