Skip to content

Commit 5e0979b

Browse files
fix(release): omit workspace dev-dependencies from packages (#10978)
1 parent cbba9d7 commit 5e0979b

8 files changed

Lines changed: 21 additions & 21 deletions

File tree

tower-batch-control/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ rand = { workspace = true }
4646

4747
tokio = { workspace = true, features = ["full", "tracing", "test-util"] }
4848
tokio-test = { workspace = true }
49-
tower-fallback = { path = "../tower-fallback/", version = "0.2.42" }
49+
tower-fallback = { path = "../tower-fallback/" }
5050
tower-test = { workspace = true }
5151

52-
zebra-test = { path = "../zebra-test/", version = "4.0.0" }
52+
zebra-test = { path = "../zebra-test/" }
5353

5454
[lints]
5555
workspace = true

tower-fallback/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ tracing = { workspace = true }
2525
[dev-dependencies]
2626
tokio = { workspace = true, features = ["full", "tracing", "test-util"] }
2727

28-
zebra-test = { path = "../zebra-test/", version = "4.0.0" }
28+
zebra-test = { path = "../zebra-test/" }
2929

3030
[lints]
3131
workspace = true

zebra-chain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ rand_chacha = { workspace = true }
154154

155155
tokio = { workspace = true, features = ["full", "tracing", "test-util"] }
156156

157-
zebra-test = { path = "../zebra-test/", version = "4.0.0" }
157+
zebra-test = { path = "../zebra-test/" }
158158

159159
[[bench]]
160160
name = "block"

zebra-consensus/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ tokio = { workspace = true, features = ["full", "tracing", "test-util"] }
9595
tracing-error = { workspace = true }
9696
tracing-subscriber = { workspace = true }
9797

98-
zebra-state = { path = "../zebra-state", version = "10.1.0", features = ["proptest-impl"] }
99-
zebra-chain = { path = "../zebra-chain", version = "11.1.0", features = ["proptest-impl"] }
100-
zebra-test = { path = "../zebra-test/", version = "4.0.0" }
98+
zebra-state = { path = "../zebra-state", features = ["proptest-impl"] }
99+
zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
100+
zebra-test = { path = "../zebra-test/" }
101101

102102
criterion = { workspace = true, features = ["html_reports"] }
103103

zebra-rpc/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,20 +136,20 @@ proptest = { workspace = true }
136136

137137
tokio = { workspace = true, features = ["full", "tracing", "test-util"] }
138138

139-
zebra-chain = { path = "../zebra-chain", version = "11.1.0", features = [
139+
zebra-chain = { path = "../zebra-chain", features = [
140140
"proptest-impl",
141141
] }
142-
zebra-consensus = { path = "../zebra-consensus", version = "11.0.0", features = [
142+
zebra-consensus = { path = "../zebra-consensus", features = [
143143
"proptest-impl",
144144
] }
145-
zebra-network = { path = "../zebra-network", version = "10.1.0", features = [
145+
zebra-network = { path = "../zebra-network", features = [
146146
"proptest-impl",
147147
] }
148-
zebra-state = { path = "../zebra-state", version = "10.1.0", features = [
148+
zebra-state = { path = "../zebra-state", features = [
149149
"proptest-impl",
150150
] }
151151

152-
zebra-test = { path = "../zebra-test", version = "4.0.0" }
152+
zebra-test = { path = "../zebra-test" }
153153

154154
[lints]
155155
workspace = true

zebra-script/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ lazy_static = { workspace = true }
3737
ripemd = { workspace = true }
3838
secp256k1 = { workspace = true }
3939
sha2 = { workspace = true }
40-
zebra-test = { path = "../zebra-test", version = "4.0.0" }
40+
zebra-test = { path = "../zebra-test" }
4141

4242
[lints]
4343
workspace = true

zebra-state/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ jubjub = { workspace = true }
108108

109109
tokio = { workspace = true, features = ["full", "tracing", "test-util"] }
110110

111-
zebra-chain = { path = "../zebra-chain", version = "11.1.0", features = ["proptest-impl"] }
112-
zebra-test = { path = "../zebra-test/", version = "4.0.0" }
111+
zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
112+
zebra-test = { path = "../zebra-test/" }
113113

114114
[lints]
115115
workspace = true

zebrad/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -302,12 +302,12 @@ proptest-derive = { workspace = true }
302302
# enable span traces and track caller in tests
303303
color-eyre = { workspace = true }
304304

305-
zebra-chain = { path = "../zebra-chain", version = "11.1.0", features = ["proptest-impl"] }
306-
zebra-consensus = { path = "../zebra-consensus", version = "11.0.0", features = ["proptest-impl"] }
307-
zebra-network = { path = "../zebra-network", version = "10.1.0", features = ["proptest-impl"] }
308-
zebra-state = { path = "../zebra-state", version = "10.1.0", features = ["proptest-impl"] }
305+
zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
306+
zebra-consensus = { path = "../zebra-consensus", features = ["proptest-impl"] }
307+
zebra-network = { path = "../zebra-network", features = ["proptest-impl"] }
308+
zebra-state = { path = "../zebra-state", features = ["proptest-impl"] }
309309

310-
zebra-test = { path = "../zebra-test", version = "4.0.0" }
310+
zebra-test = { path = "../zebra-test" }
311311

312312
# Used by the checkpoint generation tests via the zebra-checkpoints feature
313313
# (the binaries in this crate won't be built unless their features are enabled).
@@ -318,7 +318,7 @@ zebra-test = { path = "../zebra-test", version = "4.0.0" }
318318
# When `-Z bindeps` is stabilised, enable this binary dependency instead:
319319
# https://github.com/rust-lang/cargo/issues/9096
320320
# zebra-utils { path = "../zebra-utils", artifact = "bin:zebra-checkpoints" }
321-
zebra-utils = { path = "../zebra-utils", version = "9.1.0" }
321+
zebra-utils = { path = "../zebra-utils" }
322322

323323
[package.metadata.cargo-udeps.ignore]
324324
# These dependencies are false positives - they are actually used

0 commit comments

Comments
 (0)