mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-17 00: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
@@ -19,7 +19,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
async-trait = { version = "0.1.74", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", default-features = false, features = ["alloc", "derive"], optional = true }
|
||||
serde = { features = ["alloc", "derive"], optional = true, workspace = true }
|
||||
sp-api = { path = "../../api", default-features = false }
|
||||
sp-application-crypto = { path = "../../application-crypto", default-features = false }
|
||||
sp-consensus-slots = { path = "../slots", default-features = false }
|
||||
|
||||
@@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", default-features = false, optional = true, features = ["alloc", "derive"] }
|
||||
serde = { optional = true, features = ["alloc", "derive"], workspace = true }
|
||||
sp-api = { path = "../../api", default-features = false }
|
||||
sp-application-crypto = { path = "../../application-crypto", default-features = false }
|
||||
sp-core = { path = "../../core", default-features = false }
|
||||
|
||||
@@ -20,7 +20,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
async-trait = "0.1.74"
|
||||
futures = { version = "0.3.21", features = ["thread-pool"] }
|
||||
log = { workspace = true, default-features = true }
|
||||
thiserror = "1.0.48"
|
||||
thiserror = { workspace = true }
|
||||
sp-core = { path = "../../core" }
|
||||
sp-inherents = { path = "../../inherents" }
|
||||
sp-runtime = { path = "../../runtime" }
|
||||
|
||||
@@ -21,7 +21,7 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
grandpa = { package = "finality-grandpa", version = "0.16.2", default-features = false, features = ["derive-codec"] }
|
||||
log = { workspace = true }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", features = ["alloc", "derive"], default-features = false, optional = true }
|
||||
serde = { features = ["alloc", "derive"], optional = true, workspace = true }
|
||||
sp-api = { path = "../../api", default-features = false }
|
||||
sp-application-crypto = { path = "../../application-crypto", default-features = false }
|
||||
sp-core = { path = "../../core", default-features = false }
|
||||
|
||||
@@ -20,7 +20,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
scale-codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", default-features = false, features = ["derive"], optional = true }
|
||||
serde = { features = ["derive"], optional = true, workspace = true }
|
||||
sp-api = { path = "../../api", default-features = false }
|
||||
sp-application-crypto = { path = "../../application-crypto", default-features = false, features = ["bandersnatch-experimental"] }
|
||||
sp-consensus-slots = { path = "../slots", default-features = false }
|
||||
|
||||
@@ -18,7 +18,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive", "max-encoded-len"] }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"], optional = true }
|
||||
serde = { features = ["alloc", "derive"], optional = true, workspace = true }
|
||||
sp-std = { path = "../../std", default-features = false }
|
||||
sp-timestamp = { path = "../../timestamp", default-features = false }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user