Skip to content

Commit 83ff959

Browse files
committed
autoinherit and bump prost* to 14
Signed-off-by: clux <[email protected]>
1 parent cc84beb commit 83ff959

File tree

3 files changed

+21
-10
lines changed

3 files changed

+21
-10
lines changed

Cargo.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,14 @@ members = [
55
"k8s-pb"
66
]
77
resolver = "2"
8+
9+
[workspace.dependencies]
10+
anyhow = "1.0.44"
11+
env_logger = "0.11.0"
12+
log = "0.4.14"
13+
prost = "0.12.3"
14+
prost-build = "0.12.3"
15+
prost-types = "0.12.3"
16+
quote = "1.0"
17+
serde = "1.0.130"
18+
serde_json = "1.0.67"

k8s-pb-codegen/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ license = "Apache-2.0"
66
publish = false
77

88
[dependencies]
9-
prost = "0.13.1"
10-
prost-build = "0.13.1"
11-
prost-types = "0.13.1"
12-
serde_json = "1.0.67"
13-
serde = { version = "1.0.130", features = ["derive"] }
14-
log = "0.4.14"
15-
anyhow = "1.0.44"
16-
env_logger = "0.11.0"
17-
quote = "1.0"
9+
prost = { workspace = true }
10+
prost-build = { workspace = true }
11+
prost-types = { workspace = true }
12+
serde_json = { workspace = true }
13+
serde = { workspace = true, features = ["derive"] }
14+
log = { workspace = true }
15+
anyhow = { workspace = true }
16+
env_logger = { workspace = true }
17+
quote = { workspace = true }

k8s-pb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ rust-version = "1.65.0"
1515
edition = "2021"
1616

1717
[dependencies]
18-
prost = "0.13.1"
18+
prost = { workspace = true }

0 commit comments

Comments
 (0)