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:
Oliver Tale-Yazdi
2024-02-20 15:28:05 +01:00
committed by GitHub
parent ef6ac94f52
commit e89d0fca35
185 changed files with 283 additions and 274 deletions
@@ -21,7 +21,7 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" }
polkadot-node-primitives = { path = "../../primitives" }
sp-core = { path = "../../../../substrate/primitives/core", features = ["std"] }
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
thiserror = "1.0.48"
thiserror = { workspace = true }
rand = "0.8.5"
derive_more = "0.99.17"
schnellru = "0.2.1"
@@ -15,7 +15,7 @@ tokio = "1.24.2"
schnellru = "0.2.1"
rand = "0.8.5"
fatality = "0.0.6"
thiserror = "1.0.48"
thiserror = { workspace = true }
async-trait = "0.1.74"
gum = { package = "tracing-gum", path = "../../gum" }
+1 -1
View File
@@ -25,7 +25,7 @@ polkadot-overseer = { path = "../../overseer" }
parking_lot = "0.12.1"
bytes = "1"
fatality = "0.0.6"
thiserror = "1"
thiserror = { workspace = true }
[dev-dependencies]
assert_matches = "1.4.0"
@@ -25,7 +25,7 @@ polkadot-node-primitives = { path = "../../primitives" }
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
polkadot-node-subsystem = { path = "../../subsystem" }
fatality = "0.0.6"
thiserror = "1.0.48"
thiserror = { workspace = true }
tokio-util = "0.7.1"
[dev-dependencies]
@@ -24,7 +24,7 @@ polkadot-node-primitives = { path = "../../primitives" }
sc-network = { path = "../../../../substrate/client/network" }
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto" }
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
thiserror = "1.0.48"
thiserror = { workspace = true }
fatality = "0.0.6"
schnellru = "0.2.1"
indexmap = "2.0.0"
+1 -1
View File
@@ -21,7 +21,7 @@ sc-network = { path = "../../../../substrate/client/network" }
sc-authority-discovery = { path = "../../../../substrate/client/authority-discovery" }
strum = { version = "0.24", features = ["derive"] }
futures = "0.3.21"
thiserror = "1.0.48"
thiserror = { workspace = true }
fatality = "0.0.6"
rand = "0.8"
derive_more = "0.99"
@@ -23,7 +23,7 @@ polkadot-node-network-protocol = { path = "../protocol" }
arrayvec = "0.7.4"
indexmap = "2.0.0"
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] }
thiserror = "1.0.48"
thiserror = { workspace = true }
fatality = "0.0.6"
bitvec = "1"