Skip to content

Commit b858586

Browse files
committed
Use workspace deps
1 parent 8793d1e commit b858586

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

polkadot/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ polkadot-node-core-pvf-common = { workspace = true, default-features = true }
4141
polkadot-node-core-pvf-execute-worker = { workspace = true, default-features = true }
4242

4343
[target.'cfg(target_os = "linux")'.dependencies]
44-
tikv-jemallocator = { version = "0.5.0", features = ["unprefixed_malloc_on_supported_platforms"] }
44+
tikv-jemallocator = { workspace = true, features = ["unprefixed_malloc_on_supported_platforms"] }
4545

4646
[dev-dependencies]
4747
assert_cmd = { workspace = true }

polkadot/node/core/pvf/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ test-parachain-adder = { workspace = true }
6565
test-parachain-halt = { workspace = true }
6666

6767
[target.'cfg(target_os = "linux")'.dev-dependencies]
68-
libc = "0.2.155"
69-
procfs = "0.16.0"
70-
rusty-fork = "0.3.0"
68+
libc = { workspace = true }
69+
procfs = { workspace = true }
70+
rusty-fork = { workspace = true, default-features = true }
7171
sc-sysinfo = { workspace = true, default-features = true }
7272

7373
[[bench]]

polkadot/node/core/pvf/common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ sp-io = { workspace = true, default-features = true }
3535
sp-tracing = { workspace = true, default-features = true }
3636

3737
[target.'cfg(target_os = "linux")'.dependencies]
38-
landlock = "0.3.0"
38+
landlock = { workspace = true }
3939

4040
[target.'cfg(all(target_os = "linux", target_arch = "x86_64"))'.dependencies]
41-
seccompiler = "0.4.0"
41+
seccompiler = { workspace = true }
4242

4343
[dev-dependencies]
4444
assert_matches = { workspace = true }

polkadot/node/core/pvf/prepare-worker/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ sc-executor-wasmtime = { workspace = true, default-features = true }
3333
sp-maybe-compressed-blob = { workspace = true, default-features = true }
3434

3535
[target.'cfg(target_os = "linux")'.dependencies]
36-
tikv-jemallocator = "0.5.0"
37-
tikv-jemalloc-ctl = "0.5.0"
36+
tikv-jemallocator = { workspace = true }
37+
tikv-jemalloc-ctl = { workspace = true }
3838

3939
[features]
4040
builder = []

polkadot/node/overseer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ polkadot-primitives-test-helpers = { workspace = true }
3838
sp-core = { workspace = true, default-features = true }
3939

4040
[target.'cfg(target_os = "linux")'.dependencies]
41-
tikv-jemalloc-ctl = "0.5.0"
41+
tikv-jemalloc-ctl = { workspace = true }
4242

4343
[features]
4444
default = ["futures_channel"]

polkadot/node/primitives/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ sp-runtime = { workspace = true, default-features = true }
3232
thiserror = { workspace = true }
3333

3434
[target.'cfg(not(target_os = "unknown"))'.dependencies]
35-
zstd = { version = "0.12.4", default-features = false }
35+
zstd = { workspace = true, default-features = false }
3636

3737
[dev-dependencies]
3838
polkadot-erasure-coding = { workspace = true, default-features = true }

templates/parachain/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition.workspace = true
1010
publish = false
1111

1212
[dependencies]
13-
docify = "0.2.9"
13+
docify = { workspace = true }
1414

1515
[features]
1616
generate-readme = []

0 commit comments

Comments
 (0)