mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 05:11:09 +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
@@ -16,7 +16,7 @@ array-bytes = { version = "6.1", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
log = { workspace = true }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", optional = true }
|
||||
serde = { optional = true, workspace = true, default-features = true }
|
||||
binary-merkle-tree = { path = "../../utils/binary-merkle-tree", default-features = false }
|
||||
frame-support = { path = "../support", default-features = false }
|
||||
frame-system = { path = "../system", default-features = false }
|
||||
|
||||
@@ -15,7 +15,7 @@ workspace = true
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
log = { workspace = true }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive", "serde"] }
|
||||
serde = { version = "1.0.196", optional = true }
|
||||
serde = { optional = true, workspace = true, default-features = true }
|
||||
frame-support = { path = "../support", default-features = false }
|
||||
frame-system = { path = "../system", default-features = false }
|
||||
pallet-authorship = { path = "../authorship", default-features = false }
|
||||
|
||||
@@ -21,7 +21,7 @@ linregress = { version = "0.5.1", optional = true }
|
||||
log = { workspace = true }
|
||||
paste = "1.0"
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", optional = true }
|
||||
serde = { optional = true, workspace = true, default-features = true }
|
||||
frame-support = { path = "../support", default-features = false }
|
||||
frame-support-procedural = { path = "../support/procedural", default-features = false }
|
||||
frame-system = { path = "../system", default-features = false }
|
||||
|
||||
@@ -25,7 +25,7 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
] }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
log = { workspace = true }
|
||||
serde = { version = "1", optional = true, features = ["derive"] }
|
||||
serde = { optional = true, features = ["derive"], workspace = true, default-features = true }
|
||||
smallvec = { version = "1", default-features = false, features = [
|
||||
"const_generics",
|
||||
] }
|
||||
|
||||
@@ -19,5 +19,5 @@ proc-macro = true
|
||||
|
||||
[dependencies]
|
||||
proc-macro2 = "1.0.56"
|
||||
quote = "1.0.28"
|
||||
syn = { version = "2.0.49", features = ["full"] }
|
||||
quote = { workspace = true }
|
||||
syn = { features = ["full"], workspace = true }
|
||||
|
||||
@@ -22,7 +22,7 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
"max-encoded-len",
|
||||
] }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", features = ["derive"], optional = true }
|
||||
serde = { features = ["derive"], optional = true, workspace = true, default-features = true }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true }
|
||||
frame-support = { path = "../support", default-features = false }
|
||||
frame-system = { path = "../system", default-features = false }
|
||||
|
||||
@@ -20,7 +20,7 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
"derive",
|
||||
] }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", features = ["derive"], optional = true }
|
||||
serde = { features = ["derive"], optional = true, workspace = true, default-features = true }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true }
|
||||
frame-support = { path = "../support", default-features = false }
|
||||
frame-system = { path = "../system", default-features = false }
|
||||
|
||||
@@ -18,8 +18,8 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
proc-macro = true
|
||||
|
||||
[dependencies]
|
||||
syn = { version = "2.0.49", features = ["full", "visit"] }
|
||||
quote = "1.0.28"
|
||||
syn = { features = ["full", "visit"], workspace = true }
|
||||
quote = { workspace = true }
|
||||
proc-macro2 = "1.0.56"
|
||||
proc-macro-crate = "3.0.0"
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ workspace = true
|
||||
[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", optional = true, features = ["derive"] }
|
||||
serde = { optional = true, features = ["derive"], workspace = true, default-features = true }
|
||||
log = { workspace = true }
|
||||
environmental = { version = "1.1.4", default-features = false }
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@ frame-support = { default-features = false, path = "../support" }
|
||||
frame-system = { default-features = false, path = "../system" }
|
||||
log = { workspace = true }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", default-features = false, features = ["derive"] }
|
||||
serde = { features = ["derive"], workspace = true }
|
||||
sp-application-crypto = { default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-arithmetic = { default-features = false, path = "../../primitives/arithmetic" }
|
||||
sp-io = { default-features = false, path = "../../primitives/io" }
|
||||
|
||||
@@ -19,7 +19,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
log = { workspace = true }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", optional = true }
|
||||
serde = { optional = true, workspace = true, default-features = true }
|
||||
frame-support = { path = "../support", default-features = false }
|
||||
frame-system = { path = "../system", default-features = false }
|
||||
pallet-balances = { path = "../balances", default-features = false }
|
||||
|
||||
@@ -11,7 +11,7 @@ edition.workspace = true
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["max-encoded-len"] }
|
||||
scale-info = { version = "2.1.2", default-features = false, features = ["derive"] }
|
||||
paste = { version = "1.0.14", default-features = false }
|
||||
serde = { version = "1.0.196", features = ["derive"], optional = true }
|
||||
serde = { features = ["derive"], optional = true, workspace = true, default-features = true }
|
||||
docify = "0.2.5"
|
||||
|
||||
frame-support = { path = "../support", default-features = false, features = ["experimental"] }
|
||||
|
||||
@@ -21,7 +21,7 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
"derive",
|
||||
] }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", features = ["derive"], optional = true }
|
||||
serde = { features = ["derive"], optional = true, workspace = true, default-features = true }
|
||||
sp-arithmetic = { path = "../../primitives/arithmetic", default-features = false }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true }
|
||||
frame-support = { path = "../support", 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 }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", optional = true }
|
||||
serde = { optional = true, workspace = true, default-features = true }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true }
|
||||
frame-support = { path = "../support", default-features = false }
|
||||
frame-system = { path = "../system", default-features = false }
|
||||
|
||||
@@ -16,7 +16,7 @@ workspace = true
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.196", default-features = false, features = ["alloc", "derive"] }
|
||||
serde = { features = ["alloc", "derive"], workspace = true }
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = [
|
||||
"derive",
|
||||
] }
|
||||
|
||||
@@ -20,8 +20,8 @@ proc-macro = true
|
||||
[dependencies]
|
||||
proc-macro-crate = "3.0.0"
|
||||
proc-macro2 = "1.0.56"
|
||||
quote = "1.0.28"
|
||||
syn = { version = "2.0.49", features = ["full", "visit"] }
|
||||
quote = { workspace = true }
|
||||
syn = { features = ["full", "visit"], workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-runtime = { path = "../../../primitives/runtime" }
|
||||
|
||||
@@ -18,7 +18,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
|
||||
log = { workspace = true }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", optional = true }
|
||||
serde = { optional = true, workspace = true, default-features = true }
|
||||
thousands = { version = "0.2.0", optional = true }
|
||||
zstd = { version = "0.12.4", default-features = false, optional = true }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true }
|
||||
|
||||
@@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
array-bytes = { version = "6.1", default-features = false }
|
||||
serde = { version = "1.0.196", default-features = false, features = ["alloc", "derive"] }
|
||||
serde = { features = ["alloc", "derive"], workspace = true }
|
||||
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"] }
|
||||
frame-metadata = { version = "16.0.0", default-features = false, features = ["current"] }
|
||||
@@ -46,7 +46,7 @@ sp-crypto-hashing-proc-macro = { path = "../../primitives/crypto/hashing/proc-ma
|
||||
k256 = { version = "0.13.1", default-features = false, features = ["ecdsa"] }
|
||||
environmental = { version = "1.1.4", default-features = false }
|
||||
sp-genesis-builder = { path = "../../primitives/genesis-builder", default-features = false }
|
||||
serde_json = { version = "1.0.113", default-features = false, features = ["alloc"] }
|
||||
serde_json = { features = ["alloc"], workspace = true }
|
||||
docify = "0.2.7"
|
||||
static_assertions = "1.1.0"
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@ Inflector = "0.11.4"
|
||||
cfg-expr = "0.15.5"
|
||||
itertools = "0.10.3"
|
||||
proc-macro2 = "1.0.56"
|
||||
quote = "1.0.28"
|
||||
syn = { version = "2.0.49", features = ["full", "visit-mut"] }
|
||||
quote = { workspace = true }
|
||||
syn = { features = ["full", "visit-mut"], workspace = true }
|
||||
frame-support-procedural-tools = { path = "tools" }
|
||||
macro_magic = { version = "0.5.0", features = ["proc_support"] }
|
||||
proc-macro-warning = { version = "1.0.0", default-features = false }
|
||||
|
||||
@@ -17,6 +17,6 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
proc-macro-crate = "3.0.0"
|
||||
proc-macro2 = "1.0.56"
|
||||
quote = "1.0.28"
|
||||
syn = { version = "2.0.49", features = ["extra-traits", "full", "visit"] }
|
||||
quote = { workspace = true }
|
||||
syn = { features = ["extra-traits", "full", "visit"], workspace = true }
|
||||
frame-support-procedural-tools-derive = { path = "derive" }
|
||||
|
||||
@@ -19,5 +19,5 @@ proc-macro = true
|
||||
|
||||
[dependencies]
|
||||
proc-macro2 = "1.0.56"
|
||||
quote = { version = "1.0.28", features = ["proc-macro"] }
|
||||
syn = { version = "2.0.49", features = ["extra-traits", "full", "parsing", "proc-macro"] }
|
||||
quote = { features = ["proc-macro"], workspace = true }
|
||||
syn = { features = ["extra-traits", "full", "parsing", "proc-macro"], workspace = true }
|
||||
|
||||
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
static_assertions = "1.1.0"
|
||||
serde = { version = "1.0.196", default-features = false, features = ["derive"] }
|
||||
serde = { features = ["derive"], workspace = true }
|
||||
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"] }
|
||||
frame-metadata = { version = "16.0.0", default-features = false, features = ["current"] }
|
||||
|
||||
@@ -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, features = ["derive"] }
|
||||
serde = { features = ["derive"], workspace = true }
|
||||
frame-support = { path = "../..", default-features = false }
|
||||
frame-system = { path = "../../../system", default-features = false }
|
||||
sp-runtime = { path = "../../../../primitives/runtime", default-features = false }
|
||||
|
||||
@@ -20,7 +20,7 @@ cfg-if = "1.0"
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
log = { workspace = true }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive", "serde"] }
|
||||
serde = { version = "1.0.196", default-features = false, features = ["alloc", "derive"] }
|
||||
serde = { features = ["alloc", "derive"], workspace = true }
|
||||
frame-support = { path = "../support", default-features = false }
|
||||
sp-core = { path = "../../primitives/core", default-features = false, features = ["serde"] }
|
||||
sp-io = { path = "../../primitives/io", default-features = false }
|
||||
|
||||
@@ -19,7 +19,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false, features = ["derive"] }
|
||||
log = { workspace = true }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", features = ["derive"], optional = true }
|
||||
serde = { features = ["derive"], optional = true, workspace = true, default-features = true }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true }
|
||||
frame-support = { path = "../support", default-features = false }
|
||||
frame-system = { path = "../system", default-features = false }
|
||||
|
||||
@@ -20,7 +20,7 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
"derive",
|
||||
] }
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", optional = true }
|
||||
serde = { optional = true, workspace = true, default-features = true }
|
||||
frame-support = { path = "../support", default-features = false }
|
||||
frame-system = { path = "../system", default-features = false }
|
||||
sp-core = { path = "../../primitives/core", default-features = false }
|
||||
@@ -29,7 +29,7 @@ sp-runtime = { path = "../../primitives/runtime", default-features = false }
|
||||
sp-std = { path = "../../primitives/std", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.113"
|
||||
serde_json = { workspace = true, default-features = true }
|
||||
pallet-balances = { path = "../balances" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -30,10 +30,10 @@ frame-benchmarking = { path = "../../benchmarking", default-features = false, op
|
||||
# Other 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", optional = true }
|
||||
serde = { optional = true, workspace = true, default-features = true }
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.113"
|
||||
serde_json = { workspace = true, default-features = true }
|
||||
|
||||
sp-storage = { path = "../../../primitives/storage", default-features = false }
|
||||
|
||||
|
||||
@@ -19,7 +19,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
array-bytes = { version = "6.1", 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", optional = true }
|
||||
serde = { optional = true, workspace = true, default-features = true }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true }
|
||||
frame-support = { path = "../support", default-features = false }
|
||||
frame-system = { path = "../system", default-features = false }
|
||||
|
||||
@@ -23,7 +23,7 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
docify = "0.2.7"
|
||||
impl-trait-for-tuples = "0.2.2"
|
||||
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.196", features = ["derive"], optional = true }
|
||||
serde = { features = ["derive"], optional = true, workspace = true, default-features = true }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false, optional = true }
|
||||
frame-support = { path = "../support", default-features = false }
|
||||
frame-system = { path = "../system", default-features = false }
|
||||
|
||||
Reference in New Issue
Block a user