mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-24 19:25:55 +00:00
Release primitive crates (#10937)
* cargo set-version --bump major -p pallet-contracts-primitives * cargo set-version --bump major -p sp-core * cargo set-version --bump major -p sp-runtime-interface * cargo set-version --bump major -p sp-wasm-interface * cargo set-version --bump major -p sp-runtime * cargo set-version --bump major -p sp-storage * cargo set-version --bump major -p sp-rpc * cargo set-version --bump major -p sp-io * cargo set-version --bump major -p sp-trie * cargo set-version -p sp-state-machine -- 0.12.0 * cargo set-version -p sp-externalities -- 0.12.0 * cargo set-version -p sp-keystore -- 0.12.0 * cargo set-version --bump major -p sp-keyring * cargo set-version --bump major -p sp-version * cargo set-version --bump major -p sp-tracing * cargo set-version --bump major -p sp-application-crypto * cargo set-version --bump major -p sp-arithmetic * cargo unleash version bump-major -p sp-runtime-interface-proc-macro * Add codec max-encoded-len feature to sp-arithmetic * cargo unleash version bump-major -p sp-core-hashing-proc-macro
This commit is contained in:
@@ -17,7 +17,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
# Needed for various traits. In our case, `OnFinalize`.
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
# Needed for type-safe access to storage DB.
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
# `system` module provides us with all sorts of useful stuff and macros depend on it being around.
|
||||
@@ -25,9 +25,9 @@ frame-system = { version = "4.0.0-dev", default-features = false, path = "../sys
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
sp-std = { version = "4.0.0", path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -17,10 +17,10 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
|
||||
@@ -13,19 +13,19 @@ readme = "README.md"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
sp-application-crypto = { version = "5.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-application-crypto = { version = "6.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
sp-consensus-aura = { version = "0.10.0-dev", path = "../../primitives/consensus/aura", default-features = false }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../timestamp" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
sp-authority-discovery = { version = "4.0.0-dev", default-features = false, path = "../../primitives/authority-discovery" }
|
||||
sp-application-crypto = { version = "5.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-application-crypto = { version = "6.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [
|
||||
"derive",
|
||||
] }
|
||||
@@ -23,13 +23,13 @@ sp-std = { version = "4.0.0", default-features = false, path = "../../primitives
|
||||
pallet-session = { version = "4.0.0-dev", features = [
|
||||
"historical",
|
||||
], path = "../session", default-features = false }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -19,14 +19,14 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-authorship = { version = "4.0.0-dev", default-features = false, path = "../../primitives/authorship" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
impl-trait-for-tuples = "0.2.1"
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -21,11 +21,11 @@ frame-system = { version = "4.0.0-dev", default-features = false, path = "../sys
|
||||
pallet-authorship = { version = "4.0.0-dev", default-features = false, path = "../authorship" }
|
||||
pallet-session = { version = "4.0.0-dev", default-features = false, path = "../session" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../timestamp" }
|
||||
sp-application-crypto = { version = "5.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-application-crypto = { version = "6.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-consensus-babe = { version = "0.10.0-dev", default-features = false, path = "../../primitives/consensus/babe" }
|
||||
sp-consensus-vrf = { version = "0.10.0-dev", default-features = false, path = "../../primitives/consensus/vrf" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../primitives/session" }
|
||||
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
@@ -36,7 +36,7 @@ pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-offences = { version = "4.0.0-dev", path = "../offences" }
|
||||
pallet-staking = { version = "4.0.0-dev", path = "../staking" }
|
||||
pallet-staking-reward-curve = { version = "4.0.0-dev", path = "../staking/reward-curve" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", path = "../election-provider-support" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -18,7 +18,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
|
||||
# primitives
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
|
||||
# FRAME
|
||||
@@ -32,14 +32,14 @@ log = { version = "0.4.14", default-features = false }
|
||||
# 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 = "5.0.0", path = "../../primitives/core", optional = true, default-features = false }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io", optional = true, default-features = false }
|
||||
sp-tracing = { version = "4.0.0", path = "../../primitives/tracing", optional = true, default-features = false }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core", optional = true, default-features = false }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io", optional = true, default-features = false }
|
||||
sp-tracing = { version = "5.0.0", path = "../../primitives/tracing", optional = true, default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core"}
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io"}
|
||||
sp-tracing = { version = "4.0.0", path = "../../primitives/tracing" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core"}
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io"}
|
||||
sp-tracing = { version = "5.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", features = ["runtime-benchmarks"] }
|
||||
frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking" }
|
||||
|
||||
@@ -21,10 +21,10 @@ frame-system = { path = "../../system", version = "4.0.0-dev" }
|
||||
frame-support = { path = "../../support", version = "4.0.0-dev" }
|
||||
|
||||
# core
|
||||
sp-storage = { path = "../../../primitives/storage", version = "5.0.0"}
|
||||
sp-core = { path = "../../../primitives/core", version = "5.0.0"}
|
||||
sp-tracing = { path = "../../../primitives/tracing", version = "4.0.0" }
|
||||
sp-runtime = { path = "../../../primitives/runtime", version = "5.0.0"}
|
||||
sp-storage = { path = "../../../primitives/storage", version = "6.0.0"}
|
||||
sp-core = { path = "../../../primitives/core", version = "6.0.0"}
|
||||
sp-tracing = { path = "../../../primitives/tracing", version = "5.0.0"}
|
||||
sp-runtime = { path = "../../../primitives/runtime", version = "6.0.0"}
|
||||
sp-std = { path = "../../../primitives/std", version = "4.0.0" }
|
||||
|
||||
# utils
|
||||
|
||||
@@ -16,15 +16,15 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
pallet-transaction-payment = { version = "4.0.0-dev", path = "../transaction-payment" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -21,9 +21,9 @@ pallet-mmr = { version = "4.0.0-dev", path = "../merkle-mountain-range", default
|
||||
pallet-mmr-primitives = { version = "4.0.0-dev", path = "../merkle-mountain-range/primitives", default-features = false }
|
||||
pallet-session = { version = "4.0.0-dev", path = "../session", default-features = false }
|
||||
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core", default-features = false }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io", default-features = false }
|
||||
sp-runtime = { version = "5.0.0", path = "../../primitives/runtime", default-features = false }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core", default-features = false }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io", default-features = false }
|
||||
sp-runtime = { version = "6.0.0", path = "../../primitives/runtime", default-features = false }
|
||||
sp-std = { version = "4.0.0", path = "../../primitives/std", default-features = false }
|
||||
|
||||
beefy-merkle-tree = { version = "4.0.0-dev", path = "./primitives", default-features = false }
|
||||
|
||||
@@ -15,7 +15,7 @@ serde = { version = "1.0.136", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", path = "../support", default-features = false }
|
||||
frame-system = { version = "4.0.0-dev", path = "../system", default-features = false }
|
||||
|
||||
sp-runtime = { version = "5.0.0", path = "../../primitives/runtime", default-features = false }
|
||||
sp-runtime = { version = "6.0.0", path = "../../primitives/runtime", default-features = false }
|
||||
sp-std = { version = "4.0.0", path = "../../primitives/std", default-features = false }
|
||||
|
||||
pallet-session = { version = "4.0.0-dev", path = "../session", default-features = false }
|
||||
@@ -23,8 +23,8 @@ pallet-session = { version = "4.0.0-dev", path = "../session", default-features
|
||||
beefy-primitives = { version = "4.0.0-dev", path = "../../primitives/beefy", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
sp-staking = { version = "4.0.0-dev", path = "../../primitives/staking" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -18,12 +18,12 @@ paste = "1.0"
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api", default-features = false }
|
||||
sp-runtime-interface = { version = "5.0.0", path = "../../primitives/runtime-interface", default-features = false }
|
||||
sp-runtime = { version = "5.0.0", path = "../../primitives/runtime", default-features = false }
|
||||
sp-runtime-interface = { version = "6.0.0", path = "../../primitives/runtime-interface", default-features = false }
|
||||
sp-runtime = { version = "6.0.0", path = "../../primitives/runtime", default-features = false }
|
||||
sp-std = { version = "4.0.0", path = "../../primitives/std", default-features = false }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io", default-features = false }
|
||||
sp-application-crypto = { version = "5.0.0", path = "../../primitives/application-crypto", default-features = false }
|
||||
sp-storage = { version = "5.0.0", path = "../../primitives/storage", default-features = false }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io", default-features = false }
|
||||
sp-application-crypto = { version = "6.0.0", path = "../../primitives/application-crypto", default-features = false }
|
||||
sp-storage = { version = "6.0.0", path = "../../primitives/storage", default-features = false }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
@@ -31,7 +31,7 @@ serde = { version = "1.0.136", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
hex-literal = "0.3.4"
|
||||
sp-keystore = { version = "0.11.0", path = "../../primitives/keystore" }
|
||||
sp-keystore = { version = "0.12.0", path = "../../primitives/keystore" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -18,12 +18,12 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
pallet-treasury = { version = "4.0.0-dev", default-features = false, path = "../treasury" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io", default-features = false }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core", default-features = false }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io", default-features = false }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core", default-features = false }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
|
||||
|
||||
@@ -18,13 +18,13 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
pallet-treasury = { version = "4.0.0-dev", default-features = false, path = "../treasury" }
|
||||
pallet-bounties = { version = "4.0.0-dev", default-features = false, path = "../bounties" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io", default-features = false }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core", default-features = false }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io", default-features = false }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core", default-features = false }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
|
||||
|
||||
@@ -17,9 +17,9 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
@@ -35,11 +35,11 @@ rand_pcg = { version = "0.3", optional = true }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
pallet-contracts-primitives = { version = "5.0.0", default-features = false, path = "common" }
|
||||
pallet-contracts-primitives = { version = "6.0.0", default-features = false, path = "common" }
|
||||
pallet-contracts-proc-macro = { version = "4.0.0-dev", path = "proc-macro" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-sandbox = { version = "0.10.0-dev", default-features = false, path = "../../primitives/sandbox" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
|
||||
@@ -55,7 +55,7 @@ pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", path = "../timestamp" }
|
||||
pallet-randomness-collective-flip = { version = "4.0.0-dev", path = "../randomness-collective-flip" }
|
||||
pallet-utility = { version = "4.0.0-dev", path = "../utility" }
|
||||
sp-keystore = { version = "0.11.0", path = "../../primitives/keystore" }
|
||||
sp-keystore = { version = "0.12.0", path = "../../primitives/keystore" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-contracts-primitives"
|
||||
version = "5.0.0"
|
||||
version = "6.0.0"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2021"
|
||||
license = "Apache-2.0"
|
||||
@@ -19,10 +19,10 @@ scale-info = { version = "2.0.0", default-features = false, features = ["derive"
|
||||
serde = { version = "1", features = ["derive"], optional = true }
|
||||
|
||||
# Substrate Dependencies (This crate should not rely on frame)
|
||||
sp-core = { version = "5.0.0", path = "../../../primitives/core", default-features = false }
|
||||
sp-core = { version = "6.0.0", path = "../../../primitives/core", default-features = false }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
sp-rpc = { version = "5.0.0", path = "../../../primitives/rpc", optional = true }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-rpc = { version = "6.0.0", path = "../../../primitives/rpc", optional = true }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -20,13 +20,13 @@ jsonrpc-derive = "18.0.0"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
|
||||
# Substrate Dependencies
|
||||
pallet-contracts-primitives = { version = "5.0.0", path = "../common" }
|
||||
pallet-contracts-primitives = { version = "6.0.0", path = "../common" }
|
||||
pallet-contracts-rpc-runtime-api = { version = "4.0.0-dev", path = "./runtime-api" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
|
||||
sp-rpc = { version = "5.0.0", path = "../../../primitives/rpc" }
|
||||
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
|
||||
sp-rpc = { version = "6.0.0", path = "../../../primitives/rpc" }
|
||||
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1"
|
||||
|
||||
@@ -17,9 +17,9 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
|
||||
# Substrate Dependencies
|
||||
pallet-contracts-primitives = { version = "5.0.0", default-features = false, path = "../../common" }
|
||||
pallet-contracts-primitives = { version = "6.0.0", default-features = false, path = "../../common" }
|
||||
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../../primitives/api" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../../../primitives/std" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -19,15 +19,15 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
assert_matches = "1.3.0"
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-scheduler = { version = "4.0.0-dev", path = "../scheduler" }
|
||||
|
||||
|
||||
@@ -19,14 +19,14 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-scheduler = { version = "4.0.0-dev", path = "../scheduler" }
|
||||
|
||||
|
||||
@@ -23,12 +23,12 @@ log = { version = "0.4.14", default-features = false }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../primitives/npos-elections" }
|
||||
sp-arithmetic = { version = "4.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
||||
sp-arithmetic = { version = "5.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../election-provider-support" }
|
||||
|
||||
# Optional imports for benchmarking
|
||||
@@ -42,10 +42,10 @@ strum = { optional = true, default-features = false, version = "0.23.0", feature
|
||||
[dev-dependencies]
|
||||
parking_lot = "0.12.0"
|
||||
rand = { version = "0.7.3" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../primitives/npos-elections" }
|
||||
sp-tracing = { version = "4.0.0", path = "../../primitives/tracing" }
|
||||
sp-tracing = { version = "5.0.0", path = "../../primitives/tracing" }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", features = [
|
||||
], path = "../election-provider-support" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
|
||||
@@ -16,16 +16,16 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-arithmetic = { version = "4.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
||||
sp-arithmetic = { version = "5.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
||||
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../primitives/npos-elections" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-npos-elections = { version = "4.0.0-dev", path = "../../primitives/npos-elections" }
|
||||
sp-runtime = { version = "5.0.0", path = "../../primitives/runtime" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", path = "../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -17,19 +17,19 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
"derive",
|
||||
] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-npos-elections = { version = "4.0.0-dev", default-features = false, path = "../../primitives/npos-elections" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
substrate-test-utils = { version = "4.0.0-dev", path = "../../test-utils" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -21,12 +21,12 @@ frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" }
|
||||
pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../../balances" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../../primitives/core", default-features = false }
|
||||
sp-core = { version = "6.0.0", path = "../../../primitives/core", default-features = false }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -20,10 +20,10 @@ scale-info = { version = "2.0.0", default-features = false, features = ["derive"
|
||||
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../../primitives/io" }
|
||||
sp-keystore = { version = "0.11.0", path = "../../../primitives/keystore", optional = true }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../../primitives/io" }
|
||||
sp-keystore = { version = "0.12.0", path = "../../../primitives/keystore", optional = true }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -17,9 +17,9 @@ scale-info = { version = "2.0.0", default-features = false, features = ["derive"
|
||||
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
sp-tasks = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/tasks" }
|
||||
|
||||
|
||||
@@ -19,19 +19,19 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-tracing = { version = "4.0.0", default-features = false, path = "../../primitives/tracing" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-tracing = { version = "5.0.0", default-features = false, path = "../../primitives/tracing" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
|
||||
[dev-dependencies]
|
||||
hex-literal = "0.3.4"
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-transaction-payment = { version = "4.0.0-dev", path = "../transaction-payment" }
|
||||
sp-version = { version = "4.0.0-dev", path = "../../primitives/version" }
|
||||
sp-version = { version = "5.0.0", path = "../../primitives/version" }
|
||||
sp-inherents = { version = "4.0.0-dev", path = "../../primitives/inherents" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -16,15 +16,15 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-arithmetic = { version = "4.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-arithmetic = { version = "5.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -15,13 +15,13 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-application-crypto = { version = "5.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-application-crypto = { version = "6.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-finality-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../primitives/finality-grandpa" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../primitives/session" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
@@ -33,7 +33,7 @@ log = { version = "0.4.14", default-features = false }
|
||||
[dev-dependencies]
|
||||
frame-benchmarking = { version = "4.0.0-dev", path = "../benchmarking" }
|
||||
grandpa = { package = "finality-grandpa", version = "0.15.0", features = ["derive-codec"] }
|
||||
sp-keyring = { version = "5.0.0", path = "../../primitives/keyring" }
|
||||
sp-keyring = { version = "6.0.0", path = "../../primitives/keyring" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-offences = { version = "4.0.0-dev", path = "../offences" }
|
||||
pallet-staking = { version = "4.0.0-dev", path = "../staking" }
|
||||
|
||||
@@ -17,14 +17,14 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
enumflags2 = { version = "0.6.2" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -13,14 +13,14 @@ readme = "README.md"
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
sp-application-crypto = { version = "5.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-application-crypto = { version = "6.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
pallet-authorship = { version = "4.0.0-dev", default-features = false, path = "../authorship" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
@@ -15,11 +15,11 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-keyring = { version = "5.0.0", optional = true, path = "../../primitives/keyring" }
|
||||
sp-keyring = { version = "6.0.0", optional = true, path = "../../primitives/keyring" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
@@ -27,8 +27,8 @@ frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "
|
||||
[dev-dependencies]
|
||||
frame-support-test = { version = "3.0.0", path = "../support/test" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -17,9 +17,9 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
log = { version = "0.4.0", default-features = false }
|
||||
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
@@ -16,9 +16,9 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
mmr-lib = { package = "ckb-merkle-mountain-range", default-features = false, version = "0.3.2" }
|
||||
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
@@ -17,8 +17,8 @@ log = { version = "0.4.14", default-features = false }
|
||||
serde = { version = "1.0.136", optional = true, features = ["derive"] }
|
||||
|
||||
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/api" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" }
|
||||
|
||||
@@ -21,8 +21,8 @@ serde = { version = "1.0.136", features = ["derive"] }
|
||||
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
|
||||
|
||||
pallet-mmr-primitives = { version = "4.0.0-dev", path = "../primitives" }
|
||||
|
||||
|
||||
@@ -17,14 +17,14 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -16,13 +16,13 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -16,9 +16,9 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
|
||||
|
||||
@@ -18,15 +18,15 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
serde = { version = "1.0.136", optional = true }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -29,7 +29,7 @@ pallet-session = { version = "4.0.0-dev", default-features = false, path = "../.
|
||||
pallet-staking = { version = "4.0.0-dev", default-features = false, features = [
|
||||
"runtime-benchmarks",
|
||||
], path = "../../staking" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/staking" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../../election-provider-support" }
|
||||
@@ -37,8 +37,8 @@ frame-election-provider-support = { version = "4.0.0-dev", default-features = fa
|
||||
[dev-dependencies]
|
||||
pallet-staking-reward-curve = { version = "4.0.0-dev", path = "../../staking/reward-curve" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", path = "../../timestamp" }
|
||||
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", path = "../../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -14,15 +14,15 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-core = { version = "5.0.0", default-features = false, optional = true, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", default-features = false, optional = true, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core", default-features = false }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core", default-features = false }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -17,14 +17,14 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-utility = { version = "4.0.0-dev", path = "../utility" }
|
||||
|
||||
|
||||
@@ -16,15 +16,15 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
safe-mix = { version = "1.0", default-features = false }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -16,13 +16,13 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -19,15 +19,15 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0-dev", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
assert_matches = { version = "1.5", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-scheduler = { version = "4.0.0-dev", path = "../scheduler" }
|
||||
pallet-preimage = { version = "4.0.0-dev", path = "../preimage" }
|
||||
|
||||
@@ -14,15 +14,15 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core", default-features = false }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core", default-features = false }
|
||||
substrate-test-utils = { version = "4.0.0-dev", path = "../../test-utils" }
|
||||
pallet-preimage = { version = "4.0.0-dev", path = "../preimage" }
|
||||
|
||||
|
||||
@@ -15,15 +15,15 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -20,12 +20,12 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../primitives/session" }
|
||||
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" }
|
||||
sp-trie = { version = "5.0.0", default-features = false, path = "../../primitives/trie", optional = true }
|
||||
sp-trie = { version = "6.0.0", default-features = false, path = "../../primitives/trie", optional = true }
|
||||
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
rand = { version = "0.7.2", default-features = false }
|
||||
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/session" }
|
||||
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../benchmarking" }
|
||||
@@ -28,8 +28,8 @@ pallet-staking = { version = "4.0.0-dev", default-features = false, features = [
|
||||
[dev-dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"] }
|
||||
scale-info = "2.0.0"
|
||||
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", path = "../../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../../primitives/io" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../../balances" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", path = "../../timestamp" }
|
||||
pallet-staking-reward-curve = { version = "4.0.0-dev", path = "../../staking/reward-curve" }
|
||||
|
||||
@@ -15,15 +15,15 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
rand_chacha = { version = "0.2", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io ={ version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
sp-io ={ version = "6.0.0", path = "../../primitives/io" }
|
||||
frame-support-test = { version = "3.0.0", path = "../support/test" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
|
||||
|
||||
@@ -19,8 +19,8 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
@@ -28,7 +28,7 @@ pallet-session = { version = "4.0.0-dev", default-features = false, features = [
|
||||
"historical",
|
||||
], path = "../session" }
|
||||
pallet-authorship = { version = "4.0.0-dev", default-features = false, path = "../authorship" }
|
||||
sp-application-crypto = { version = "5.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-application-crypto = { version = "6.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
frame-election-provider-support = { version = "4.0.0-dev", default-features = false, path = "../election-provider-support" }
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
|
||||
@@ -37,8 +37,8 @@ frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "
|
||||
rand_chacha = { version = "0.2", default-features = false, optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-tracing = { version = "4.0.0", path = "../../primitives/tracing" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-tracing = { version = "5.0.0", path = "../../primitives/tracing" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
sp-npos-elections = { version = "4.0.0-dev", path = "../../primitives/npos-elections" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", path = "../timestamp" }
|
||||
|
||||
@@ -21,4 +21,4 @@ proc-macro2 = "1.0.36"
|
||||
proc-macro-crate = "1.1.0"
|
||||
|
||||
[dev-dependencies]
|
||||
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
|
||||
|
||||
@@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[lib]
|
||||
|
||||
[dependencies]
|
||||
sp-arithmetic = { version = "4.0.0", default-features = false, path = "../../../primitives/arithmetic" }
|
||||
sp-arithmetic = { version = "5.0.0", default-features = false, path = "../../../primitives/arithmetic" }
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -16,13 +16,13 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -18,23 +18,23 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
frame-metadata = { version = "15.0.0", default-features = false, features = ["v14"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-tracing = { version = "4.0.0", default-features = false, path = "../../primitives/tracing" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-arithmetic = { version = "4.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-tracing = { version = "5.0.0", default-features = false, path = "../../primitives/tracing" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-arithmetic = { version = "5.0.0", default-features = false, path = "../../primitives/arithmetic" }
|
||||
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../primitives/inherents" }
|
||||
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../../primitives/staking" }
|
||||
tt-call = "1.0.8"
|
||||
frame-support-procedural = { version = "4.0.0-dev", default-features = false, path = "./procedural" }
|
||||
paste = "1.0"
|
||||
once_cell = { version = "1", default-features = false, optional = true }
|
||||
sp-state-machine = { version = "0.11.0", optional = true, path = "../../primitives/state-machine" }
|
||||
sp-state-machine = { version = "0.12.0", optional = true, path = "../../primitives/state-machine" }
|
||||
bitflags = "1.3"
|
||||
impl-trait-for-tuples = "0.2.1"
|
||||
smallvec = "1.8.0"
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
sp-core-hashing-proc-macro = { version = "4.0.0-dev", path = "../../primitives/core/hashing/proc-macro" }
|
||||
sp-core-hashing-proc-macro = { version = "5.0.0", path = "../../primitives/core/hashing/proc-macro" }
|
||||
|
||||
[dev-dependencies]
|
||||
assert_matches = "1.3.0"
|
||||
|
||||
@@ -15,14 +15,14 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
serde = { version = "1.0.136", default-features = false, features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-arithmetic = { version = "4.0.0", default-features = false, path = "../../../primitives/arithmetic" }
|
||||
sp-io = { version = "5.0.0", path = "../../../primitives/io", default-features = false }
|
||||
sp-state-machine = { version = "0.11.0", optional = true, path = "../../../primitives/state-machine" }
|
||||
sp-arithmetic = { version = "5.0.0", default-features = false, path = "../../../primitives/arithmetic" }
|
||||
sp-io = { version = "6.0.0", path = "../../../primitives/io", default-features = false }
|
||||
sp-state-machine = { version = "0.12.0", optional = true, path = "../../../primitives/state-machine" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../primitives/version" }
|
||||
sp-version = { version = "5.0.0", default-features = false, path = "../../../primitives/version" }
|
||||
trybuild = "1.0.53"
|
||||
pretty_assertions = "1.0.0"
|
||||
rustversion = "1.0.6"
|
||||
|
||||
@@ -14,9 +14,9 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../../../primitives/core" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../../primitives/runtime" }
|
||||
sp-version = { version = "4.0.0-dev", default-features = false, path = "../../../../primitives/version" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../../../primitives/core" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../../primitives/runtime" }
|
||||
sp-version = { version = "5.0.0", default-features = false, path = "../../../../primitives/version" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../../system" }
|
||||
|
||||
|
||||
@@ -16,17 +16,17 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
serde = { version = "1.0.136", optional = true, features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io", default-features = false }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-version = { version = "4.0.0-dev", default-features = false, path = "../../primitives/version" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io", default-features = false }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-version = { version = "5.0.0", default-features = false, path = "../../primitives/version" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.3.3"
|
||||
sp-externalities = { version = "0.11.0", path = "../../primitives/externalities" }
|
||||
sp-externalities = { version = "0.12.0", path = "../../primitives/externalities" }
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -16,14 +16,14 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../../benchmarking" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../system" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io = { version = "5.0.0", path = "../../../primitives/io" }
|
||||
sp-io = { version = "6.0.0", path = "../../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -18,8 +18,8 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io", optional = true }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io", optional = true }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../primitives/inherents" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
@@ -28,8 +28,8 @@ sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../
|
||||
log = { version = "0.4.14", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io ={ version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io ={ version = "6.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -18,9 +18,9 @@ log = { version = "0.4.0", default-features = false }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.136", features = ["derive"], optional = true }
|
||||
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
@@ -30,7 +30,7 @@ pallet-treasury = { version = "4.0.0-dev", default-features = false, path = "../
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-storage = { version = "5.0.0", path = "../../primitives/storage" }
|
||||
sp-storage = { version = "6.0.0", path = "../../primitives/storage" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -20,9 +20,9 @@ scale-info = { version = "2.0.0", default-features = false, features = ["derive"
|
||||
serde = { version = "1.0.136", optional = true }
|
||||
smallvec = "1.8.0"
|
||||
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core", default-features = false }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io", default-features = false }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core", default-features = false }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io", default-features = false }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
|
||||
@@ -14,9 +14,9 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
# Substrate dependencies
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../../primitives/io" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../../primitives/io" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../support" }
|
||||
@@ -32,7 +32,7 @@ serde = { version = "1.0.136", optional = true }
|
||||
smallvec = "1.8.0"
|
||||
serde_json = "1.0.74"
|
||||
|
||||
sp-storage = { version = "5.0.0", default-features = false, path = "../../../primitives/storage" }
|
||||
sp-storage = { version = "6.0.0", default-features = false, path = "../../../primitives/storage" }
|
||||
|
||||
pallet-assets = { version = "4.0.0-dev", path = "../../assets" }
|
||||
pallet-authorship = { version = "4.0.0-dev", path = "../../authorship" }
|
||||
|
||||
@@ -20,7 +20,7 @@ jsonrpc-derive = "18.0.0"
|
||||
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
|
||||
sp-rpc = { version = "5.0.0", path = "../../../primitives/rpc" }
|
||||
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
|
||||
sp-rpc = { version = "6.0.0", path = "../../../primitives/rpc" }
|
||||
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "4.0.0-dev", path = "./runtime-api" }
|
||||
|
||||
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../../../primitives/api" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../../../primitives/runtime" }
|
||||
pallet-transaction-payment = { version = "4.0.0-dev", default-features = false, path = "../../../transaction-payment" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -20,16 +20,16 @@ scale-info = { version = "2.0.0", default-features = false, features = ["derive"
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../balances" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../primitives/inherents" }
|
||||
sp-transaction-storage-proof = { version = "4.0.0-dev", default-features = false, path = "../../primitives/transaction-storage-proof" }
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-transaction-storage-proof = { version = "4.0.0-dev", default-features = true, path = "../../primitives/transaction-storage-proof" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core", default-features = false }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core", default-features = false }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -22,7 +22,7 @@ serde = { version = "1.0.136", features = ["derive"], optional = true }
|
||||
impl-trait-for-tuples = "0.2.1"
|
||||
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
@@ -31,8 +31,8 @@ pallet-balances = { version = "4.0.0-dev", default-features = false, path = "../
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
sp-api = { version = "4.0.0-dev", path = "../../primitives/api", default-features = false }
|
||||
sp-std = { version = "4.0.0", path = "../../primitives/std" , default-features = false }
|
||||
sp-runtime = { version = "5.0.0", path = "../../primitives/runtime" , default-features = false }
|
||||
sp-runtime = { version = "6.0.0", path = "../../primitives/runtime" , default-features = false }
|
||||
|
||||
frame-support = { version = "4.0.0-dev", path = "../support", default-features = false }
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
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-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
@@ -24,8 +24,8 @@ log = { version = "0.4.14", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-std = { version = "4.0.0", path = "../../primitives/std" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "5.0.0", path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", path = "../../primitives/io" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -17,15 +17,15 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../support" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../system" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
|
||||
frame-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
|
||||
[features]
|
||||
|
||||
@@ -18,15 +18,15 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
|
||||
] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
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-benchmarking = { version = "4.0.0-dev", default-features = false, path = "../benchmarking", optional = true }
|
||||
log = { version = "0.4.0", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-core = { version = "5.0.0", path = "../../primitives/core" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-core = { version = "6.0.0", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "4.0.0-dev", path = "../balances" }
|
||||
|
||||
[features]
|
||||
|
||||
Reference in New Issue
Block a user