diff --git a/Cargo.lock b/Cargo.lock index 0df5ee3e..66ff718c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1899,8 +1899,8 @@ dependencies = [ [[package]] name = "stackable-operator" -version = "0.42.2" -source = "git+https://github.com/stackabletech//operator-rs.git?branch=main#c1266d25aab2de9c2c68e5b83ef7851c11205783" +version = "0.43.0" +source = "git+https://github.com/stackabletech/operator-rs.git?tag=0.43.0#5d2ca16a6136d3994bf89a6bd5aa3a2180711251" dependencies = [ "chrono", "clap", @@ -1933,8 +1933,8 @@ dependencies = [ [[package]] name = "stackable-operator-derive" -version = "0.42.2" -source = "git+https://github.com/stackabletech//operator-rs.git?branch=main#c1266d25aab2de9c2c68e5b83ef7851c11205783" +version = "0.43.0" +source = "git+https://github.com/stackabletech/operator-rs.git?tag=0.43.0#5d2ca16a6136d3994bf89a6bd5aa3a2180711251" dependencies = [ "darling 0.20.1", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 485da945..a2b5b09c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ ] [workspace.dependencies] -stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag="0.42.2" } +stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag="0.43.0" } semver = "1.0" serde = "1.0" serde_json = "1.0" @@ -19,6 +19,6 @@ futures = "0.3" tokio = "1.24" anyhow = "1.0" -[patch."https://github.com/stackabletech/operator-rs.git"] -stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main"} +#[patch."https://github.com/stackabletech/operator-rs.git"] +#stackable-operator = { git = "https://github.com/stackabletech//operator-rs.git", branch = "main"} #stackable-operator = { path = "../operator-rs" } diff --git a/rust/operator-binary/Cargo.toml b/rust/operator-binary/Cargo.toml index 0cc55beb..25b3418f 100644 --- a/rust/operator-binary/Cargo.toml +++ b/rust/operator-binary/Cargo.toml @@ -26,5 +26,5 @@ tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } [build-dependencies] built = { version = "0.6", features = ["chrono", "git2"] } -stackable-operator = { git = "https://github.com/stackabletech/operator-rs.git", tag="0.42.2" } +stackable-operator = { workspace = true } stackable-spark-k8s-crd = { path = "../crd" }