Skip to content

Commit

Permalink
chore: Remove explicit dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Techassi committed Oct 9, 2024
1 parent e808f49 commit c714a1f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions crates/stackable-operator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ repository.workspace = true
time = ["dep:time"]

[dependencies]
stackable-operator-derive = { path = "../stackable-operator-derive", version = "0.3.1" }
stackable-shared = { path = "../stackable-shared", version = "0.0.1" }
stackable-operator-derive = { path = "../stackable-operator-derive" }
stackable-shared = { path = "../stackable-shared" }

chrono.workspace = true
clap.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/stackable-versioned-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ full = ["k8s"]
k8s = ["dep:kube", "dep:k8s-openapi", "dep:stackable-shared"]

[dependencies]
stackable-shared = { path = "../stackable-shared", version = "0.0.1", optional = true }
k8s-version = { path = "../k8s-version", version = "0.1.2", features = ["darling"] }
stackable-shared = { path = "../stackable-shared", optional = true }
k8s-version = { path = "../k8s-version", features = ["darling"] }

convert_case.workspace = true
darling.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/stackable-versioned/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ k8s = [
]

[dependencies]
stackable-shared = { path = "../stackable-shared", version = "0.0.1", optional = true }
stackable-versioned-macros = { path = "../stackable-versioned-macros" }
stackable-shared = { path = "../stackable-shared", optional = true }

kube = { workspace = true, optional = true }
snafu = { workspace = true, optional = true }

0 comments on commit c714a1f

Please sign in to comment.