mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 07:01:03 +00:00
@@ -17,13 +17,13 @@ codec = { package = "parity-scale-codec", version = "3.6.1", default-features =
|
||||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
||||
|
||||
# primitives
|
||||
sp-runtime = { version = "24.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "8.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { path = "../../primitives/runtime", default-features = false}
|
||||
sp-std = { path = "../../primitives/std", default-features = false}
|
||||
|
||||
# FRAME
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../election-provider-support" }
|
||||
frame-support = { path = "../support", default-features = false}
|
||||
frame-system = { path = "../system", default-features = false}
|
||||
frame-election-provider-support = { path = "../election-provider-support", default-features = false}
|
||||
|
||||
# third party
|
||||
log = { version = "0.4.17", default-features = false }
|
||||
@@ -31,19 +31,19 @@ docify = "0.2.1"
|
||||
aquamarine = { version = "0.3.2" }
|
||||
|
||||
# Optional imports for benchmarking
|
||||
frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking", optional = true, default-features = false }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances", optional = true, default-features = false }
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core", optional = true, default-features = false }
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io", optional = true, default-features = false }
|
||||
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing", optional = true, default-features = false }
|
||||
frame-benchmarking = { path = "../benchmarking", default-features = false , optional = true}
|
||||
pallet-balances = { path = "../balances", default-features = false , optional = true}
|
||||
sp-core = { path = "../../primitives/core", default-features = false , optional = true}
|
||||
sp-io = { path = "../../primitives/io", default-features = false , optional = true}
|
||||
sp-tracing = { path = "../../primitives/tracing", default-features = false , optional = true}
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "21.0.0", path = "../../primitives/core"}
|
||||
sp-io = { version = "23.0.0", path = "../../primitives/io"}
|
||||
sp-tracing = { version = "10.0.0", path = "../../primitives/tracing" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", path = "../election-provider-support" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking" }
|
||||
sp-core = { path = "../../primitives/core" }
|
||||
sp-io = { path = "../../primitives/io" }
|
||||
sp-tracing = { path = "../../primitives/tracing" }
|
||||
pallet-balances = { path = "../balances" }
|
||||
frame-election-provider-support = { path = "../election-provider-support" }
|
||||
frame-benchmarking = { path = "../benchmarking" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
|
||||
Reference in New Issue
Block a user