mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-17 21:51:06 +00:00
Lift dependencies to the workspace (Part 2/x) (#3366)
Lifting some more dependencies to the workspace. Just using the most-often updated ones for now. It can be reproduced locally. ```sh # First you can check if there would be semver incompatible bumps (looks good in this case): $ zepter transpose dependency lift-to-workspace --ignore-errors syn quote thiserror "regex:^serde.*" # Then apply the changes: $ zepter transpose dependency lift-to-workspace --version-resolver=highest syn quote thiserror "regex:^serde.*" --fix # And format the changes: $ taplo format --config .config/taplo.toml ``` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
This commit is contained in:
committed by
GitHub
parent
ef6ac94f52
commit
e89d0fca35
@@ -20,7 +20,7 @@ merlin = "3.0"
|
||||
schnorrkel = "0.11.4"
|
||||
kvdb = "0.13.0"
|
||||
derive_more = "0.99.17"
|
||||
thiserror = "1.0.48"
|
||||
thiserror = { workspace = true }
|
||||
itertools = "0.10.5"
|
||||
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
|
||||
@@ -13,7 +13,7 @@ workspace = true
|
||||
futures = "0.3.21"
|
||||
futures-timer = "3.0.2"
|
||||
kvdb = "0.13.0"
|
||||
thiserror = "1.0.48"
|
||||
thiserror = { workspace = true }
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
bitvec = "1.0.0"
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ erasure-coding = { package = "polkadot-erasure-coding", path = "../../../erasure
|
||||
statement-table = { package = "polkadot-statement-table", path = "../../../statement-table" }
|
||||
bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
thiserror = "1.0.48"
|
||||
thiserror = { workspace = true }
|
||||
fatality = "0.0.6"
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
@@ -17,7 +17,7 @@ polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
||||
wasm-timer = "0.2.5"
|
||||
thiserror = "1.0.48"
|
||||
thiserror = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
||||
|
||||
@@ -18,7 +18,7 @@ polkadot-node-primitives = { path = "../../primitives" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
||||
kvdb = "0.13.0"
|
||||
thiserror = "1.0.48"
|
||||
thiserror = { workspace = true }
|
||||
parity-scale-codec = "3.6.1"
|
||||
|
||||
[dev-dependencies]
|
||||
|
||||
@@ -14,7 +14,7 @@ futures = "0.3.21"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
parity-scale-codec = "3.6.1"
|
||||
kvdb = "0.13.0"
|
||||
thiserror = "1.0.48"
|
||||
thiserror = { workspace = true }
|
||||
schnellru = "0.2.1"
|
||||
fatality = "0.0.6"
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ workspace = true
|
||||
futures = "0.3.21"
|
||||
futures-timer = "3.0.2"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
thiserror = "1.0.48"
|
||||
thiserror = { workspace = true }
|
||||
async-trait = "0.1.74"
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
polkadot-overseer = { path = "../../overseer" }
|
||||
|
||||
@@ -13,7 +13,7 @@ workspace = true
|
||||
futures = "0.3.19"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
parity-scale-codec = "3.6.4"
|
||||
thiserror = "1.0.48"
|
||||
thiserror = { workspace = true }
|
||||
fatality = "0.0.6"
|
||||
bitvec = "1"
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ workspace = true
|
||||
bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
|
||||
futures = "0.3.21"
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
thiserror = "1.0.48"
|
||||
thiserror = { workspace = true }
|
||||
polkadot-primitives = { path = "../../../primitives" }
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
polkadot-node-subsystem = { path = "../../subsystem" }
|
||||
|
||||
@@ -11,7 +11,7 @@ workspace = true
|
||||
|
||||
[dependencies]
|
||||
futures = "0.3.21"
|
||||
thiserror = "1.0.48"
|
||||
thiserror = { workspace = true }
|
||||
gum = { package = "tracing-gum", path = "../../gum" }
|
||||
|
||||
polkadot-node-primitives = { path = "../../primitives" }
|
||||
|
||||
@@ -23,7 +23,7 @@ pin-project = "1.0.9"
|
||||
rand = "0.8.5"
|
||||
slotmap = "1.0"
|
||||
tempfile = "3.3.0"
|
||||
thiserror = "1.0.31"
|
||||
thiserror = { workspace = true }
|
||||
tokio = { version = "1.24.2", features = ["fs", "process"] }
|
||||
|
||||
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
|
||||
@@ -15,7 +15,7 @@ cpu-time = "1.0.0"
|
||||
futures = "0.3.21"
|
||||
gum = { package = "tracing-gum", path = "../../../gum" }
|
||||
libc = "0.2.152"
|
||||
thiserror = "1.0.31"
|
||||
thiserror = { workspace = true }
|
||||
|
||||
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user