mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-19 16:55:43 +00:00
Releasing 3.0 (#8098)
* bumping version for next release * add changelog * add guide
This commit is contained in:
committed by
GitHub
parent
772224c132
commit
6a964c5df0
Generated
+154
-154
File diff suppressed because it is too large
Load Diff
@@ -18,43 +18,43 @@ name = "node-template"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
structopt = "0.3.8"
|
structopt = "0.3.8"
|
||||||
|
|
||||||
sc-cli = { version = "0.8.0", path = "../../../client/cli", features = ["wasmtime"] }
|
sc-cli = { version = "0.9.0", path = "../../../client/cli", features = ["wasmtime"] }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sc-executor = { version = "0.8.0", path = "../../../client/executor", features = ["wasmtime"] }
|
sc-executor = { version = "0.9.0", path = "../../../client/executor", features = ["wasmtime"] }
|
||||||
sc-service = { version = "0.8.0", path = "../../../client/service", features = ["wasmtime"] }
|
sc-service = { version = "0.9.0", path = "../../../client/service", features = ["wasmtime"] }
|
||||||
sc-telemetry = { version = "2.0.0", path = "../../../client/telemetry" }
|
sc-telemetry = { version = "3.0.0", path = "../../../client/telemetry" }
|
||||||
sc-keystore = { version = "2.0.0", path = "../../../client/keystore" }
|
sc-keystore = { version = "3.0.0", path = "../../../client/keystore" }
|
||||||
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
|
||||||
sc-transaction-pool = { version = "2.0.0", path = "../../../client/transaction-pool" }
|
sc-transaction-pool = { version = "3.0.0", path = "../../../client/transaction-pool" }
|
||||||
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" }
|
||||||
sc-consensus-aura = { version = "0.8.0", path = "../../../client/consensus/aura" }
|
sc-consensus-aura = { version = "0.9.0", path = "../../../client/consensus/aura" }
|
||||||
sp-consensus-aura = { version = "0.8.0", path = "../../../primitives/consensus/aura" }
|
sp-consensus-aura = { version = "0.9.0", path = "../../../primitives/consensus/aura" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
||||||
sc-consensus = { version = "0.8.0", path = "../../../client/consensus/common" }
|
sc-consensus = { version = "0.9.0", path = "../../../client/consensus/common" }
|
||||||
sc-finality-grandpa = { version = "0.8.0", path = "../../../client/finality-grandpa" }
|
sc-finality-grandpa = { version = "0.9.0", path = "../../../client/finality-grandpa" }
|
||||||
sp-finality-grandpa = { version = "2.0.0", path = "../../../primitives/finality-grandpa" }
|
sp-finality-grandpa = { version = "3.0.0", path = "../../../primitives/finality-grandpa" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../../../client/api" }
|
sc-client-api = { version = "3.0.0", path = "../../../client/api" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
|
|
||||||
# These dependencies are used for the node template's RPCs
|
# These dependencies are used for the node template's RPCs
|
||||||
jsonrpc-core = "15.1.0"
|
jsonrpc-core = "15.1.0"
|
||||||
sc-rpc = { version = "2.0.0", path = "../../../client/rpc" }
|
sc-rpc = { version = "3.0.0", path = "../../../client/rpc" }
|
||||||
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
|
||||||
sc-rpc-api = { version = "0.8.0", path = "../../../client/rpc-api" }
|
sc-rpc-api = { version = "0.9.0", path = "../../../client/rpc-api" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
|
sp-block-builder = { version = "3.0.0", path = "../../../primitives/block-builder" }
|
||||||
sc-basic-authorship = { version = "0.8.0", path = "../../../client/basic-authorship" }
|
sc-basic-authorship = { version = "0.9.0", path = "../../../client/basic-authorship" }
|
||||||
substrate-frame-rpc-system = { version = "2.0.0", path = "../../../utils/frame/rpc/system" }
|
substrate-frame-rpc-system = { version = "3.0.0", path = "../../../utils/frame/rpc/system" }
|
||||||
pallet-transaction-payment-rpc = { version = "2.0.0", path = "../../../frame/transaction-payment/rpc/" }
|
pallet-transaction-payment-rpc = { version = "3.0.0", path = "../../../frame/transaction-payment/rpc/" }
|
||||||
|
|
||||||
# These dependencies are used for runtime benchmarking
|
# These dependencies are used for runtime benchmarking
|
||||||
frame-benchmarking = { version = "2.0.0", path = "../../../frame/benchmarking" }
|
frame-benchmarking = { version = "3.0.0", path = "../../../frame/benchmarking" }
|
||||||
frame-benchmarking-cli = { version = "2.0.0", path = "../../../utils/frame/benchmarking-cli" }
|
frame-benchmarking-cli = { version = "3.0.0", path = "../../../utils/frame/benchmarking-cli" }
|
||||||
|
|
||||||
node-template-runtime = { version = "2.0.0", path = "../runtime" }
|
node-template-runtime = { version = "2.0.0", path = "../runtime" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
substrate-build-script-utils = { version = "2.0.0", path = "../../../utils/build-script-utils" }
|
substrate-build-script-utils = { version = "3.0.0", path = "../../../utils/build-script-utils" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
|
|||||||
@@ -15,32 +15,32 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
serde = { version = "1.0.101" }
|
|
||||||
|
|
||||||
[dependencies.frame-support]
|
[dependencies.frame-support]
|
||||||
default-features = false
|
default-features = false
|
||||||
version = "2.0.0"
|
version = "3.0.0"
|
||||||
path = "../../../../frame/support"
|
path = "../../../../frame/support"
|
||||||
|
|
||||||
[dependencies.frame-system]
|
[dependencies.frame-system]
|
||||||
default-features = false
|
default-features = false
|
||||||
version = "2.0.0"
|
version = "3.0.0"
|
||||||
path = "../../../../frame/system"
|
path = "../../../../frame/system"
|
||||||
|
|
||||||
|
[dev-dependencies]
|
||||||
|
serde = { version = "1.0.101" }
|
||||||
|
|
||||||
[dev-dependencies.sp-core]
|
[dev-dependencies.sp-core]
|
||||||
default-features = false
|
default-features = false
|
||||||
version = "2.0.0"
|
version = "3.0.0"
|
||||||
path = "../../../../primitives/core"
|
path = "../../../../primitives/core"
|
||||||
|
|
||||||
[dev-dependencies.sp-io]
|
[dev-dependencies.sp-io]
|
||||||
default-features = false
|
default-features = false
|
||||||
version = "2.0.0"
|
version = "3.0.0"
|
||||||
path = "../../../../primitives/io"
|
path = "../../../../primitives/io"
|
||||||
|
|
||||||
[dev-dependencies.sp-runtime]
|
[dev-dependencies.sp-runtime]
|
||||||
default-features = false
|
default-features = false
|
||||||
version = "2.0.0"
|
version = "3.0.0"
|
||||||
path = "../../../../primitives/runtime"
|
path = "../../../../primitives/runtime"
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -13,42 +13,42 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
|
|
||||||
pallet-aura = { version = "2.0.0", default-features = false, path = "../../../frame/aura" }
|
pallet-aura = { version = "3.0.0", default-features = false, path = "../../../frame/aura" }
|
||||||
pallet-balances = { version = "2.0.0", default-features = false, path = "../../../frame/balances" }
|
pallet-balances = { version = "3.0.0", default-features = false, path = "../../../frame/balances" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../../../frame/support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../../../frame/support" }
|
||||||
pallet-grandpa = { version = "2.0.0", default-features = false, path = "../../../frame/grandpa" }
|
pallet-grandpa = { version = "3.0.0", default-features = false, path = "../../../frame/grandpa" }
|
||||||
pallet-randomness-collective-flip = { version = "2.0.0", default-features = false, path = "../../../frame/randomness-collective-flip" }
|
pallet-randomness-collective-flip = { version = "3.0.0", default-features = false, path = "../../../frame/randomness-collective-flip" }
|
||||||
pallet-sudo = { version = "2.0.0", default-features = false, path = "../../../frame/sudo" }
|
pallet-sudo = { version = "3.0.0", default-features = false, path = "../../../frame/sudo" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../../../frame/system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../../../frame/system" }
|
||||||
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../../../frame/timestamp" }
|
pallet-timestamp = { version = "3.0.0", default-features = false, path = "../../../frame/timestamp" }
|
||||||
pallet-transaction-payment = { version = "2.0.0", default-features = false, path = "../../../frame/transaction-payment" }
|
pallet-transaction-payment = { version = "3.0.0", default-features = false, path = "../../../frame/transaction-payment" }
|
||||||
frame-executive = { version = "2.0.0", default-features = false, path = "../../../frame/executive" }
|
frame-executive = { version = "3.0.0", default-features = false, path = "../../../frame/executive" }
|
||||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||||
sp-api = { version = "2.0.0", default-features = false, path = "../../../primitives/api" }
|
sp-api = { version = "3.0.0", default-features = false, path = "../../../primitives/api" }
|
||||||
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0"}
|
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "3.0.0"}
|
||||||
sp-consensus-aura = { version = "0.8.0", default-features = false, path = "../../../primitives/consensus/aura" }
|
sp-consensus-aura = { version = "0.9.0", default-features = false, path = "../../../primitives/consensus/aura" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../../primitives/core" }
|
||||||
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0"}
|
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "3.0.0"}
|
||||||
sp-offchain = { version = "2.0.0", default-features = false, path = "../../../primitives/offchain" }
|
sp-offchain = { version = "3.0.0", default-features = false, path = "../../../primitives/offchain" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||||
sp-session = { version = "2.0.0", default-features = false, path = "../../../primitives/session" }
|
sp-session = { version = "3.0.0", default-features = false, path = "../../../primitives/session" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" }
|
||||||
sp-transaction-pool = { version = "2.0.0", default-features = false, path = "../../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", default-features = false, path = "../../../primitives/transaction-pool" }
|
||||||
sp-version = { version = "2.0.0", default-features = false, path = "../../../primitives/version" }
|
sp-version = { version = "3.0.0", default-features = false, path = "../../../primitives/version" }
|
||||||
|
|
||||||
# Used for the node template's RPCs
|
# Used for the node template's RPCs
|
||||||
frame-system-rpc-runtime-api = { version = "2.0.0", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
|
frame-system-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
|
||||||
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
|
pallet-transaction-payment-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
|
||||||
|
|
||||||
# Used for runtime benchmarking
|
# Used for runtime benchmarking
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../../../frame/benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../../../frame/benchmarking", optional = true }
|
||||||
frame-system-benchmarking = { version = "2.0.0", default-features = false, path = "../../../frame/system/benchmarking", optional = true }
|
frame-system-benchmarking = { version = "3.0.0", default-features = false, path = "../../../frame/system/benchmarking", optional = true }
|
||||||
hex-literal = { version = "0.3.1", optional = true }
|
hex-literal = { version = "0.3.1", optional = true }
|
||||||
|
|
||||||
template = { version = "2.0.0", default-features = false, path = "../pallets/template", package = "pallet-template" }
|
template = { version = "2.0.0", default-features = false, path = "../pallets/template", package = "pallet-template" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
substrate-wasm-builder = { version = "3.0.0", path = "../../../utils/wasm-builder" }
|
substrate-wasm-builder = { version = "4.0.0", path = "../../../utils/wasm-builder" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -13,24 +13,24 @@ log = "0.4.8"
|
|||||||
node-primitives = { version = "2.0.0", path = "../primitives" }
|
node-primitives = { version = "2.0.0", path = "../primitives" }
|
||||||
node-testing = { version = "2.0.0", path = "../testing" }
|
node-testing = { version = "2.0.0", path = "../testing" }
|
||||||
node-runtime = { version = "2.0.0", path = "../runtime" }
|
node-runtime = { version = "2.0.0", path = "../runtime" }
|
||||||
sc-cli = { version = "0.8.0", path = "../../../client/cli" }
|
sc-cli = { version = "0.9.0", path = "../../../client/cli" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../../../client/api/" }
|
sc-client-api = { version = "3.0.0", path = "../../../client/api/" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
sp-state-machine = { version = "0.8.0", path = "../../../primitives/state-machine" }
|
sp-state-machine = { version = "0.9.0", path = "../../../primitives/state-machine" }
|
||||||
serde = "1.0.101"
|
serde = "1.0.101"
|
||||||
serde_json = "1.0.41"
|
serde_json = "1.0.41"
|
||||||
structopt = "0.3"
|
structopt = "0.3"
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
kvdb = "0.9.0"
|
kvdb = "0.9.0"
|
||||||
kvdb-rocksdb = "0.11.0"
|
kvdb-rocksdb = "0.11.0"
|
||||||
sp-trie = { version = "2.0.0", path = "../../../primitives/trie" }
|
sp-trie = { version = "3.0.0", path = "../../../primitives/trie" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
||||||
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" }
|
||||||
sc-basic-authorship = { version = "0.8.0", path = "../../../client/basic-authorship" }
|
sc-basic-authorship = { version = "0.9.0", path = "../../../client/basic-authorship" }
|
||||||
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
|
||||||
sp-timestamp = { version = "2.0.0", default-features = false, path = "../../../primitives/timestamp" }
|
sp-timestamp = { version = "3.0.0", default-features = false, path = "../../../primitives/timestamp" }
|
||||||
sp-tracing = { version = "2.0.0", path = "../../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../../primitives/tracing" }
|
||||||
hash-db = "0.15.2"
|
hash-db = "0.15.2"
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
fs_extra = "1"
|
fs_extra = "1"
|
||||||
@@ -39,5 +39,5 @@ rand = { version = "0.7.2", features = ["small_rng"] }
|
|||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
|
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
|
||||||
parity-db = { version = "0.2.2" }
|
parity-db = { version = "0.2.2" }
|
||||||
sc-transaction-pool = { version = "2.0.0", path = "../../../client/transaction-pool" }
|
sc-transaction-pool = { version = "3.0.0", path = "../../../client/transaction-pool" }
|
||||||
futures = { version = "0.3.4", features = ["thread-pool"] }
|
futures = { version = "0.3.4", features = ["thread-pool"] }
|
||||||
|
|||||||
@@ -18,4 +18,4 @@ wasm-bindgen-test = "0.3.18"
|
|||||||
futures = "0.3.9"
|
futures = "0.3.9"
|
||||||
|
|
||||||
node-cli = { path = "../cli", default-features = false, features = ["browser"] , version = "2.0.0"}
|
node-cli = { path = "../cli", default-features = false, features = ["browser"] , version = "2.0.0"}
|
||||||
sc-rpc-api = { path = "../../../client/rpc-api" , version = "0.8.0"}
|
sc-rpc-api = { path = "../../../client/rpc-api" , version = "0.9.0"}
|
||||||
|
|||||||
@@ -44,50 +44,50 @@ structopt = { version = "0.3.8", optional = true }
|
|||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
|
|
||||||
# primitives
|
# primitives
|
||||||
sp-authority-discovery = { version = "2.0.0", path = "../../../primitives/authority-discovery" }
|
sp-authority-discovery = { version = "3.0.0", path = "../../../primitives/authority-discovery" }
|
||||||
sp-consensus-babe = { version = "0.8.0", path = "../../../primitives/consensus/babe" }
|
sp-consensus-babe = { version = "0.9.0", path = "../../../primitives/consensus/babe" }
|
||||||
grandpa-primitives = { version = "2.0.0", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
|
grandpa-primitives = { version = "3.0.0", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
sp-timestamp = { version = "2.0.0", default-features = false, path = "../../../primitives/timestamp" }
|
sp-timestamp = { version = "3.0.0", default-features = false, path = "../../../primitives/timestamp" }
|
||||||
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
|
||||||
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" }
|
sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" }
|
||||||
sp-keystore = { version = "0.8.0", path = "../../../primitives/keystore" }
|
sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" }
|
||||||
sp-io = { version = "2.0.0", path = "../../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../../primitives/io" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
||||||
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" }
|
||||||
|
|
||||||
# client dependencies
|
# client dependencies
|
||||||
sc-client-api = { version = "2.0.0", path = "../../../client/api" }
|
sc-client-api = { version = "3.0.0", path = "../../../client/api" }
|
||||||
sc-chain-spec = { version = "2.0.0", path = "../../../client/chain-spec" }
|
sc-chain-spec = { version = "3.0.0", path = "../../../client/chain-spec" }
|
||||||
sc-consensus = { version = "0.8.0", path = "../../../client/consensus/common" }
|
sc-consensus = { version = "0.9.0", path = "../../../client/consensus/common" }
|
||||||
sc-transaction-pool = { version = "2.0.0", path = "../../../client/transaction-pool" }
|
sc-transaction-pool = { version = "3.0.0", path = "../../../client/transaction-pool" }
|
||||||
sc-network = { version = "0.8.0", path = "../../../client/network" }
|
sc-network = { version = "0.9.0", path = "../../../client/network" }
|
||||||
sc-consensus-slots = { version = "0.8.0", path = "../../../client/consensus/slots" }
|
sc-consensus-slots = { version = "0.9.0", path = "../../../client/consensus/slots" }
|
||||||
sc-consensus-babe = { version = "0.8.0", path = "../../../client/consensus/babe" }
|
sc-consensus-babe = { version = "0.9.0", path = "../../../client/consensus/babe" }
|
||||||
grandpa = { version = "0.8.0", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
|
grandpa = { version = "0.9.0", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
|
||||||
sc-client-db = { version = "0.8.0", default-features = false, path = "../../../client/db" }
|
sc-client-db = { version = "0.9.0", default-features = false, path = "../../../client/db" }
|
||||||
sc-offchain = { version = "2.0.0", path = "../../../client/offchain" }
|
sc-offchain = { version = "3.0.0", path = "../../../client/offchain" }
|
||||||
sc-rpc = { version = "2.0.0", path = "../../../client/rpc" }
|
sc-rpc = { version = "3.0.0", path = "../../../client/rpc" }
|
||||||
sc-basic-authorship = { version = "0.8.0", path = "../../../client/basic-authorship" }
|
sc-basic-authorship = { version = "0.9.0", path = "../../../client/basic-authorship" }
|
||||||
sc-service = { version = "0.8.0", default-features = false, path = "../../../client/service" }
|
sc-service = { version = "0.9.0", default-features = false, path = "../../../client/service" }
|
||||||
sc-tracing = { version = "2.0.0", path = "../../../client/tracing" }
|
sc-tracing = { version = "3.0.0", path = "../../../client/tracing" }
|
||||||
sc-telemetry = { version = "2.0.0", path = "../../../client/telemetry" }
|
sc-telemetry = { version = "3.0.0", path = "../../../client/telemetry" }
|
||||||
sc-authority-discovery = { version = "0.8.0", path = "../../../client/authority-discovery" }
|
sc-authority-discovery = { version = "0.9.0", path = "../../../client/authority-discovery" }
|
||||||
sc-finality-grandpa-warp-sync = { version = "0.8.0", path = "../../../client/finality-grandpa-warp-sync", optional = true }
|
sc-finality-grandpa-warp-sync = { version = "0.8.0", path = "../../../client/finality-grandpa-warp-sync", optional = true }
|
||||||
|
|
||||||
# frame dependencies
|
# frame dependencies
|
||||||
pallet-indices = { version = "2.0.0", path = "../../../frame/indices" }
|
pallet-indices = { version = "3.0.0", path = "../../../frame/indices" }
|
||||||
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../../../frame/timestamp" }
|
pallet-timestamp = { version = "3.0.0", default-features = false, path = "../../../frame/timestamp" }
|
||||||
pallet-contracts = { version = "2.0.0", path = "../../../frame/contracts" }
|
pallet-contracts = { version = "2.0.0", path = "../../../frame/contracts" }
|
||||||
frame-system = { version = "2.0.0", path = "../../../frame/system" }
|
frame-system = { version = "3.0.0", path = "../../../frame/system" }
|
||||||
pallet-balances = { version = "2.0.0", path = "../../../frame/balances" }
|
pallet-balances = { version = "3.0.0", path = "../../../frame/balances" }
|
||||||
pallet-transaction-payment = { version = "2.0.0", path = "../../../frame/transaction-payment" }
|
pallet-transaction-payment = { version = "3.0.0", path = "../../../frame/transaction-payment" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../../../frame/support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../../../frame/support" }
|
||||||
pallet-im-online = { version = "2.0.0", default-features = false, path = "../../../frame/im-online" }
|
pallet-im-online = { version = "3.0.0", default-features = false, path = "../../../frame/im-online" }
|
||||||
pallet-authority-discovery = { version = "2.0.0", path = "../../../frame/authority-discovery" }
|
pallet-authority-discovery = { version = "3.0.0", path = "../../../frame/authority-discovery" }
|
||||||
pallet-staking = { version = "2.0.0", path = "../../../frame/staking" }
|
pallet-staking = { version = "3.0.0", path = "../../../frame/staking" }
|
||||||
pallet-grandpa = { version = "2.0.0", path = "../../../frame/grandpa" }
|
pallet-grandpa = { version = "3.0.0", path = "../../../frame/grandpa" }
|
||||||
|
|
||||||
# node-specific dependencies
|
# node-specific dependencies
|
||||||
node-runtime = { version = "2.0.0", path = "../runtime" }
|
node-runtime = { version = "2.0.0", path = "../runtime" }
|
||||||
@@ -96,26 +96,26 @@ node-primitives = { version = "2.0.0", path = "../primitives" }
|
|||||||
node-executor = { version = "2.0.0", path = "../executor" }
|
node-executor = { version = "2.0.0", path = "../executor" }
|
||||||
|
|
||||||
# CLI-specific dependencies
|
# CLI-specific dependencies
|
||||||
sc-cli = { version = "0.8.0", optional = true, path = "../../../client/cli" }
|
sc-cli = { version = "0.9.0", optional = true, path = "../../../client/cli" }
|
||||||
frame-benchmarking-cli = { version = "2.0.0", optional = true, path = "../../../utils/frame/benchmarking-cli" }
|
frame-benchmarking-cli = { version = "3.0.0", optional = true, path = "../../../utils/frame/benchmarking-cli" }
|
||||||
node-inspect = { version = "0.8.0", optional = true, path = "../inspect" }
|
node-inspect = { version = "0.8.0", optional = true, path = "../inspect" }
|
||||||
|
|
||||||
# WASM-specific dependencies
|
# WASM-specific dependencies
|
||||||
wasm-bindgen = { version = "0.2.57", optional = true }
|
wasm-bindgen = { version = "0.2.57", optional = true }
|
||||||
wasm-bindgen-futures = { version = "0.4.18", optional = true }
|
wasm-bindgen-futures = { version = "0.4.18", optional = true }
|
||||||
browser-utils = { package = "substrate-browser-utils", path = "../../../utils/browser", optional = true, version = "0.8.0"}
|
browser-utils = { package = "substrate-browser-utils", path = "../../../utils/browser", optional = true, version = "0.9.0"}
|
||||||
|
|
||||||
[target.'cfg(target_arch="x86_64")'.dependencies]
|
[target.'cfg(target_arch="x86_64")'.dependencies]
|
||||||
node-executor = { version = "2.0.0", path = "../executor", features = [ "wasmtime" ] }
|
node-executor = { version = "2.0.0", path = "../executor", features = [ "wasmtime" ] }
|
||||||
sc-cli = { version = "0.8.0", optional = true, path = "../../../client/cli", features = [ "wasmtime" ] }
|
sc-cli = { version = "0.9.0", optional = true, path = "../../../client/cli", features = [ "wasmtime" ] }
|
||||||
sc-service = { version = "0.8.0", default-features = false, path = "../../../client/service", features = [ "wasmtime" ] }
|
sc-service = { version = "0.9.0", default-features = false, path = "../../../client/service", features = [ "wasmtime" ] }
|
||||||
sp-trie = { version = "2.0.0", default-features = false, path = "../../../primitives/trie", features = ["memory-tracker"] }
|
sp-trie = { version = "3.0.0", default-features = false, path = "../../../primitives/trie", features = ["memory-tracker"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sc-keystore = { version = "2.0.0", path = "../../../client/keystore" }
|
sc-keystore = { version = "3.0.0", path = "../../../client/keystore" }
|
||||||
sc-consensus = { version = "0.8.0", path = "../../../client/consensus/common" }
|
sc-consensus = { version = "0.9.0", path = "../../../client/consensus/common" }
|
||||||
sc-consensus-babe = { version = "0.8.0", features = ["test-helpers"], path = "../../../client/consensus/babe" }
|
sc-consensus-babe = { version = "0.9.0", features = ["test-helpers"], path = "../../../client/consensus/babe" }
|
||||||
sc-consensus-epochs = { version = "0.8.0", path = "../../../client/consensus/epochs" }
|
sc-consensus-epochs = { version = "0.9.0", path = "../../../client/consensus/epochs" }
|
||||||
sc-service-test = { version = "2.0.0", path = "../../../client/service/test" }
|
sc-service-test = { version = "2.0.0", path = "../../../client/service/test" }
|
||||||
futures = "0.3.9"
|
futures = "0.3.9"
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
@@ -128,12 +128,12 @@ platforms = "1.1"
|
|||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
structopt = { version = "0.3.8", optional = true }
|
structopt = { version = "0.3.8", optional = true }
|
||||||
node-inspect = { version = "0.8.0", optional = true, path = "../inspect" }
|
node-inspect = { version = "0.8.0", optional = true, path = "../inspect" }
|
||||||
frame-benchmarking-cli = { version = "2.0.0", optional = true, path = "../../../utils/frame/benchmarking-cli" }
|
frame-benchmarking-cli = { version = "3.0.0", optional = true, path = "../../../utils/frame/benchmarking-cli" }
|
||||||
substrate-build-script-utils = { version = "2.0.0", optional = true, path = "../../../utils/build-script-utils" }
|
substrate-build-script-utils = { version = "3.0.0", optional = true, path = "../../../utils/build-script-utils" }
|
||||||
substrate-frame-cli = { version = "2.0.0", optional = true, path = "../../../utils/frame/frame-utilities-cli" }
|
substrate-frame-cli = { version = "3.0.0", optional = true, path = "../../../utils/frame/frame-utilities-cli" }
|
||||||
|
|
||||||
[build-dependencies.sc-cli]
|
[build-dependencies.sc-cli]
|
||||||
version = "0.8.0"
|
version = "0.9.0"
|
||||||
package = "sc-cli"
|
package = "sc-cli"
|
||||||
path = "../../../client/cli"
|
path = "../../../client/cli"
|
||||||
optional = true
|
optional = true
|
||||||
|
|||||||
@@ -15,32 +15,32 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||||
node-primitives = { version = "2.0.0", path = "../primitives" }
|
node-primitives = { version = "2.0.0", path = "../primitives" }
|
||||||
node-runtime = { version = "2.0.0", path = "../runtime" }
|
node-runtime = { version = "2.0.0", path = "../runtime" }
|
||||||
sc-executor = { version = "0.8.0", path = "../../../client/executor" }
|
sc-executor = { version = "0.9.0", path = "../../../client/executor" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-keystore = { version = "0.8.0", path = "../../../primitives/keystore" }
|
sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" }
|
||||||
sp-io = { version = "2.0.0", path = "../../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../../primitives/io" }
|
||||||
sp-state-machine = { version = "0.8.0", path = "../../../primitives/state-machine" }
|
sp-state-machine = { version = "0.9.0", path = "../../../primitives/state-machine" }
|
||||||
sp-trie = { version = "2.0.0", path = "../../../primitives/trie" }
|
sp-trie = { version = "3.0.0", path = "../../../primitives/trie" }
|
||||||
trie-root = "0.16.0"
|
trie-root = "0.16.0"
|
||||||
frame-benchmarking = { version = "2.0.0", path = "../../../frame/benchmarking" }
|
frame-benchmarking = { version = "3.0.0", path = "../../../frame/benchmarking" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
criterion = "0.3.0"
|
criterion = "0.3.0"
|
||||||
frame-support = { version = "2.0.0", path = "../../../frame/support" }
|
frame-support = { version = "3.0.0", path = "../../../frame/support" }
|
||||||
frame-system = { version = "2.0.0", path = "../../../frame/system" }
|
frame-system = { version = "3.0.0", path = "../../../frame/system" }
|
||||||
node-testing = { version = "2.0.0", path = "../testing" }
|
node-testing = { version = "2.0.0", path = "../testing" }
|
||||||
pallet-balances = { version = "2.0.0", path = "../../../frame/balances" }
|
pallet-balances = { version = "3.0.0", path = "../../../frame/balances" }
|
||||||
pallet-contracts = { version = "2.0.0", path = "../../../frame/contracts" }
|
pallet-contracts = { version = "2.0.0", path = "../../../frame/contracts" }
|
||||||
pallet-grandpa = { version = "2.0.0", path = "../../../frame/grandpa" }
|
pallet-grandpa = { version = "3.0.0", path = "../../../frame/grandpa" }
|
||||||
pallet-im-online = { version = "2.0.0", path = "../../../frame/im-online" }
|
pallet-im-online = { version = "3.0.0", path = "../../../frame/im-online" }
|
||||||
pallet-indices = { version = "2.0.0", path = "../../../frame/indices" }
|
pallet-indices = { version = "3.0.0", path = "../../../frame/indices" }
|
||||||
pallet-session = { version = "2.0.0", path = "../../../frame/session" }
|
pallet-session = { version = "3.0.0", path = "../../../frame/session" }
|
||||||
pallet-timestamp = { version = "2.0.0", path = "../../../frame/timestamp" }
|
pallet-timestamp = { version = "3.0.0", path = "../../../frame/timestamp" }
|
||||||
pallet-transaction-payment = { version = "2.0.0", path = "../../../frame/transaction-payment" }
|
pallet-transaction-payment = { version = "3.0.0", path = "../../../frame/transaction-payment" }
|
||||||
pallet-treasury = { version = "2.0.0", path = "../../../frame/treasury" }
|
pallet-treasury = { version = "3.0.0", path = "../../../frame/treasury" }
|
||||||
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" }
|
sp-application-crypto = { version = "3.0.0", path = "../../../primitives/application-crypto" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
sp-externalities = { version = "0.8.0", path = "../../../primitives/externalities" }
|
sp-externalities = { version = "0.9.0", path = "../../../primitives/externalities" }
|
||||||
substrate-test-client = { version = "2.0.0", path = "../../../test-utils/client" }
|
substrate-test-client = { version = "2.0.0", path = "../../../test-utils/client" }
|
||||||
wat = "1.0"
|
wat = "1.0"
|
||||||
|
|
||||||
|
|||||||
@@ -14,10 +14,10 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||||
derive_more = "0.99"
|
derive_more = "0.99"
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
sc-cli = { version = "0.8.0", path = "../../../client/cli" }
|
sc-cli = { version = "0.9.0", path = "../../../client/cli" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../../../client/api" }
|
sc-client-api = { version = "3.0.0", path = "../../../client/api" }
|
||||||
sc-service = { version = "0.8.0", default-features = false, path = "../../../client/service" }
|
sc-service = { version = "0.9.0", default-features = false, path = "../../../client/service" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
structopt = "0.3.8"
|
structopt = "0.3.8"
|
||||||
|
|||||||
@@ -12,13 +12,13 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../../../frame/system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../../../frame/system" }
|
||||||
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../../../primitives/application-crypto" }
|
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../../primitives/application-crypto" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../../primitives/core" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-serializer = { version = "2.0.0", path = "../../../primitives/serializer" }
|
sp-serializer = { version = "3.0.0", path = "../../../primitives/serializer" }
|
||||||
pretty_assertions = "0.6.1"
|
pretty_assertions = "0.6.1"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|||||||
@@ -16,5 +16,5 @@ hyper = "~0.12.35"
|
|||||||
jsonrpc-core-client = { version = "15.1.0", default-features = false, features = ["http"] }
|
jsonrpc-core-client = { version = "15.1.0", default-features = false, features = ["http"] }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
node-primitives = { version = "2.0.0", path = "../primitives" }
|
node-primitives = { version = "2.0.0", path = "../primitives" }
|
||||||
sp-tracing = { version = "2.0.0", path = "../../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../../primitives/tracing" }
|
||||||
sc-rpc = { version = "2.0.0", path = "../../../client/rpc" }
|
sc-rpc = { version = "3.0.0", path = "../../../client/rpc" }
|
||||||
|
|||||||
@@ -15,24 +15,24 @@ jsonrpc-core = "15.1.0"
|
|||||||
node-primitives = { version = "2.0.0", path = "../primitives" }
|
node-primitives = { version = "2.0.0", path = "../primitives" }
|
||||||
node-runtime = { version = "2.0.0", path = "../runtime" }
|
node-runtime = { version = "2.0.0", path = "../runtime" }
|
||||||
pallet-contracts-rpc = { version = "0.8.0", path = "../../../frame/contracts/rpc/" }
|
pallet-contracts-rpc = { version = "0.8.0", path = "../../../frame/contracts/rpc/" }
|
||||||
pallet-transaction-payment-rpc = { version = "2.0.0", path = "../../../frame/transaction-payment/rpc/" }
|
pallet-transaction-payment-rpc = { version = "3.0.0", path = "../../../frame/transaction-payment/rpc/" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../../../client/api" }
|
sc-client-api = { version = "3.0.0", path = "../../../client/api" }
|
||||||
sc-consensus-babe = { version = "0.8.0", path = "../../../client/consensus/babe" }
|
sc-consensus-babe = { version = "0.9.0", path = "../../../client/consensus/babe" }
|
||||||
sc-consensus-babe-rpc = { version = "0.8.0", path = "../../../client/consensus/babe/rpc" }
|
sc-consensus-babe-rpc = { version = "0.9.0", path = "../../../client/consensus/babe/rpc" }
|
||||||
sc-consensus-epochs = { version = "0.8.0", path = "../../../client/consensus/epochs" }
|
sc-consensus-epochs = { version = "0.9.0", path = "../../../client/consensus/epochs" }
|
||||||
sc-chain-spec = { version = "2.0.0", path = "../../../client/chain-spec" }
|
sc-chain-spec = { version = "3.0.0", path = "../../../client/chain-spec" }
|
||||||
sc-finality-grandpa = { version = "0.8.0", path = "../../../client/finality-grandpa" }
|
sc-finality-grandpa = { version = "0.9.0", path = "../../../client/finality-grandpa" }
|
||||||
sc-finality-grandpa-rpc = { version = "0.8.0", path = "../../../client/finality-grandpa/rpc" }
|
sc-finality-grandpa-rpc = { version = "0.9.0", path = "../../../client/finality-grandpa/rpc" }
|
||||||
sc-keystore = { version = "2.0.0", path = "../../../client/keystore" }
|
sc-keystore = { version = "3.0.0", path = "../../../client/keystore" }
|
||||||
sc-rpc-api = { version = "0.8.0", path = "../../../client/rpc-api" }
|
sc-rpc-api = { version = "0.9.0", path = "../../../client/rpc-api" }
|
||||||
sc-rpc = { version = "2.0.0", path = "../../../client/rpc" }
|
sc-rpc = { version = "3.0.0", path = "../../../client/rpc" }
|
||||||
sc-sync-state-rpc = { version = "0.8.0", path = "../../../client/sync-state-rpc" }
|
sc-sync-state-rpc = { version = "0.9.0", path = "../../../client/sync-state-rpc" }
|
||||||
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
|
||||||
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
|
sp-block-builder = { version = "3.0.0", path = "../../../primitives/block-builder" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
sp-keystore = { version = "0.8.0", path = "../../../primitives/keystore" }
|
sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
||||||
sp-consensus-babe = { version = "0.8.0", path = "../../../primitives/consensus/babe" }
|
sp-consensus-babe = { version = "0.9.0", path = "../../../primitives/consensus/babe" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" }
|
||||||
substrate-frame-rpc-system = { version = "2.0.0", path = "../../../utils/frame/rpc/system" }
|
substrate-frame-rpc-system = { version = "3.0.0", path = "../../../utils/frame/rpc/system" }
|
||||||
|
|||||||
@@ -20,74 +20,74 @@ static_assertions = "1.1.0"
|
|||||||
hex-literal = { version = "0.3.1", optional = true }
|
hex-literal = { version = "0.3.1", optional = true }
|
||||||
|
|
||||||
# primitives
|
# primitives
|
||||||
sp-authority-discovery = { version = "2.0.0", default-features = false, path = "../../../primitives/authority-discovery" }
|
sp-authority-discovery = { version = "3.0.0", default-features = false, path = "../../../primitives/authority-discovery" }
|
||||||
sp-consensus-babe = { version = "0.8.0", default-features = false, path = "../../../primitives/consensus/babe" }
|
sp-consensus-babe = { version = "0.9.0", default-features = false, path = "../../../primitives/consensus/babe" }
|
||||||
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0"}
|
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "3.0.0"}
|
||||||
sp-inherents = { version = "2.0.0", default-features = false, path = "../../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", default-features = false, path = "../../../primitives/inherents" }
|
||||||
node-primitives = { version = "2.0.0", default-features = false, path = "../primitives" }
|
node-primitives = { version = "2.0.0", default-features = false, path = "../primitives" }
|
||||||
sp-offchain = { version = "2.0.0", default-features = false, path = "../../../primitives/offchain" }
|
sp-offchain = { version = "3.0.0", default-features = false, path = "../../../primitives/offchain" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../../primitives/core" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" }
|
||||||
sp-api = { version = "2.0.0", default-features = false, path = "../../../primitives/api" }
|
sp-api = { version = "3.0.0", default-features = false, path = "../../../primitives/api" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||||
sp-staking = { version = "2.0.0", default-features = false, path = "../../../primitives/staking" }
|
sp-staking = { version = "3.0.0", default-features = false, path = "../../../primitives/staking" }
|
||||||
sp-keyring = { version = "2.0.0", optional = true, path = "../../../primitives/keyring" }
|
sp-keyring = { version = "3.0.0", optional = true, path = "../../../primitives/keyring" }
|
||||||
sp-session = { version = "2.0.0", default-features = false, path = "../../../primitives/session" }
|
sp-session = { version = "3.0.0", default-features = false, path = "../../../primitives/session" }
|
||||||
sp-transaction-pool = { version = "2.0.0", default-features = false, path = "../../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", default-features = false, path = "../../../primitives/transaction-pool" }
|
||||||
sp-version = { version = "2.0.0", default-features = false, path = "../../../primitives/version" }
|
sp-version = { version = "3.0.0", default-features = false, path = "../../../primitives/version" }
|
||||||
|
|
||||||
# frame dependencies
|
# frame dependencies
|
||||||
frame-executive = { version = "2.0.0", default-features = false, path = "../../../frame/executive" }
|
frame-executive = { version = "3.0.0", default-features = false, path = "../../../frame/executive" }
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../../../frame/benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../../../frame/benchmarking", optional = true }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../../../frame/support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../../../frame/support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../../../frame/system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../../../frame/system" }
|
||||||
frame-system-benchmarking = { version = "2.0.0", default-features = false, path = "../../../frame/system/benchmarking", optional = true }
|
frame-system-benchmarking = { version = "3.0.0", default-features = false, path = "../../../frame/system/benchmarking", optional = true }
|
||||||
frame-system-rpc-runtime-api = { version = "2.0.0", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
|
frame-system-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
|
||||||
pallet-assets = { version = "2.0.0", default-features = false, path = "../../../frame/assets" }
|
pallet-assets = { version = "3.0.0", default-features = false, path = "../../../frame/assets" }
|
||||||
pallet-authority-discovery = { version = "2.0.0", default-features = false, path = "../../../frame/authority-discovery" }
|
pallet-authority-discovery = { version = "3.0.0", default-features = false, path = "../../../frame/authority-discovery" }
|
||||||
pallet-authorship = { version = "2.0.0", default-features = false, path = "../../../frame/authorship" }
|
pallet-authorship = { version = "3.0.0", default-features = false, path = "../../../frame/authorship" }
|
||||||
pallet-babe = { version = "2.0.0", default-features = false, path = "../../../frame/babe" }
|
pallet-babe = { version = "3.0.0", default-features = false, path = "../../../frame/babe" }
|
||||||
pallet-balances = { version = "2.0.0", default-features = false, path = "../../../frame/balances" }
|
pallet-balances = { version = "3.0.0", default-features = false, path = "../../../frame/balances" }
|
||||||
pallet-bounties = { version = "2.0.0", default-features = false, path = "../../../frame/bounties" }
|
pallet-bounties = { version = "3.0.0", default-features = false, path = "../../../frame/bounties" }
|
||||||
pallet-collective = { version = "2.0.0", default-features = false, path = "../../../frame/collective" }
|
pallet-collective = { version = "3.0.0", default-features = false, path = "../../../frame/collective" }
|
||||||
pallet-contracts = { version = "2.0.0", default-features = false, path = "../../../frame/contracts" }
|
pallet-contracts = { version = "2.0.0", default-features = false, path = "../../../frame/contracts" }
|
||||||
pallet-contracts-primitives = { version = "2.0.0", default-features = false, path = "../../../frame/contracts/common/" }
|
pallet-contracts-primitives = { version = "2.0.0", default-features = false, path = "../../../frame/contracts/common/" }
|
||||||
pallet-contracts-rpc-runtime-api = { version = "0.8.0", default-features = false, path = "../../../frame/contracts/rpc/runtime-api/" }
|
pallet-contracts-rpc-runtime-api = { version = "0.8.0", default-features = false, path = "../../../frame/contracts/rpc/runtime-api/" }
|
||||||
pallet-democracy = { version = "2.0.0", default-features = false, path = "../../../frame/democracy" }
|
pallet-democracy = { version = "3.0.0", default-features = false, path = "../../../frame/democracy" }
|
||||||
pallet-elections-phragmen = { version = "3.0.0", default-features = false, path = "../../../frame/elections-phragmen" }
|
pallet-elections-phragmen = { version = "3.0.0", default-features = false, path = "../../../frame/elections-phragmen" }
|
||||||
pallet-grandpa = { version = "2.0.0", default-features = false, path = "../../../frame/grandpa" }
|
pallet-grandpa = { version = "3.0.0", default-features = false, path = "../../../frame/grandpa" }
|
||||||
pallet-im-online = { version = "2.0.0", default-features = false, path = "../../../frame/im-online" }
|
pallet-im-online = { version = "3.0.0", default-features = false, path = "../../../frame/im-online" }
|
||||||
pallet-indices = { version = "2.0.0", default-features = false, path = "../../../frame/indices" }
|
pallet-indices = { version = "3.0.0", default-features = false, path = "../../../frame/indices" }
|
||||||
pallet-identity = { version = "2.0.0", default-features = false, path = "../../../frame/identity" }
|
pallet-identity = { version = "3.0.0", default-features = false, path = "../../../frame/identity" }
|
||||||
pallet-lottery = { version = "2.0.0", default-features = false, path = "../../../frame/lottery" }
|
pallet-lottery = { version = "3.0.0", default-features = false, path = "../../../frame/lottery" }
|
||||||
pallet-membership = { version = "2.0.0", default-features = false, path = "../../../frame/membership" }
|
pallet-membership = { version = "3.0.0", default-features = false, path = "../../../frame/membership" }
|
||||||
pallet-mmr = { version = "2.0.0", default-features = false, path = "../../../frame/merkle-mountain-range" }
|
pallet-mmr = { version = "3.0.0", default-features = false, path = "../../../frame/merkle-mountain-range" }
|
||||||
pallet-multisig = { version = "2.0.0", default-features = false, path = "../../../frame/multisig" }
|
pallet-multisig = { version = "3.0.0", default-features = false, path = "../../../frame/multisig" }
|
||||||
pallet-offences = { version = "2.0.0", default-features = false, path = "../../../frame/offences" }
|
pallet-offences = { version = "3.0.0", default-features = false, path = "../../../frame/offences" }
|
||||||
pallet-offences-benchmarking = { version = "2.0.0", path = "../../../frame/offences/benchmarking", default-features = false, optional = true }
|
pallet-offences-benchmarking = { version = "3.0.0", path = "../../../frame/offences/benchmarking", default-features = false, optional = true }
|
||||||
pallet-proxy = { version = "2.0.0", default-features = false, path = "../../../frame/proxy" }
|
pallet-proxy = { version = "3.0.0", default-features = false, path = "../../../frame/proxy" }
|
||||||
pallet-randomness-collective-flip = { version = "2.0.0", default-features = false, path = "../../../frame/randomness-collective-flip" }
|
pallet-randomness-collective-flip = { version = "3.0.0", default-features = false, path = "../../../frame/randomness-collective-flip" }
|
||||||
pallet-recovery = { version = "2.0.0", default-features = false, path = "../../../frame/recovery" }
|
pallet-recovery = { version = "3.0.0", default-features = false, path = "../../../frame/recovery" }
|
||||||
pallet-session = { version = "2.0.0", features = ["historical"], path = "../../../frame/session", default-features = false }
|
pallet-session = { version = "3.0.0", features = ["historical"], path = "../../../frame/session", default-features = false }
|
||||||
pallet-session-benchmarking = { version = "2.0.0", path = "../../../frame/session/benchmarking", default-features = false, optional = true }
|
pallet-session-benchmarking = { version = "3.0.0", path = "../../../frame/session/benchmarking", default-features = false, optional = true }
|
||||||
pallet-staking = { version = "2.0.0", default-features = false, path = "../../../frame/staking" }
|
pallet-staking = { version = "3.0.0", default-features = false, path = "../../../frame/staking" }
|
||||||
pallet-staking-reward-curve = { version = "2.0.0", default-features = false, path = "../../../frame/staking/reward-curve" }
|
pallet-staking-reward-curve = { version = "3.0.0", default-features = false, path = "../../../frame/staking/reward-curve" }
|
||||||
pallet-scheduler = { version = "2.0.0", default-features = false, path = "../../../frame/scheduler" }
|
pallet-scheduler = { version = "3.0.0", default-features = false, path = "../../../frame/scheduler" }
|
||||||
pallet-society = { version = "2.0.0", default-features = false, path = "../../../frame/society" }
|
pallet-society = { version = "3.0.0", default-features = false, path = "../../../frame/society" }
|
||||||
pallet-sudo = { version = "2.0.0", default-features = false, path = "../../../frame/sudo" }
|
pallet-sudo = { version = "3.0.0", default-features = false, path = "../../../frame/sudo" }
|
||||||
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../../../frame/timestamp" }
|
pallet-timestamp = { version = "3.0.0", default-features = false, path = "../../../frame/timestamp" }
|
||||||
pallet-tips = { version = "2.0.0", default-features = false, path = "../../../frame/tips" }
|
pallet-tips = { version = "3.0.0", default-features = false, path = "../../../frame/tips" }
|
||||||
pallet-treasury = { version = "2.0.0", default-features = false, path = "../../../frame/treasury" }
|
pallet-treasury = { version = "3.0.0", default-features = false, path = "../../../frame/treasury" }
|
||||||
pallet-utility = { version = "2.0.0", default-features = false, path = "../../../frame/utility" }
|
pallet-utility = { version = "3.0.0", default-features = false, path = "../../../frame/utility" }
|
||||||
pallet-transaction-payment = { version = "2.0.0", default-features = false, path = "../../../frame/transaction-payment" }
|
pallet-transaction-payment = { version = "3.0.0", default-features = false, path = "../../../frame/transaction-payment" }
|
||||||
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
|
pallet-transaction-payment-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
|
||||||
pallet-vesting = { version = "2.0.0", default-features = false, path = "../../../frame/vesting" }
|
pallet-vesting = { version = "3.0.0", default-features = false, path = "../../../frame/vesting" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
substrate-wasm-builder = { version = "3.0.0", path = "../../../utils/wasm-builder" }
|
substrate-wasm-builder = { version = "4.0.0", path = "../../../utils/wasm-builder" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-io = { version = "2.0.0", path = "../../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../../primitives/io" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -13,38 +13,38 @@ publish = true
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
pallet-balances = { version = "2.0.0", path = "../../../frame/balances" }
|
pallet-balances = { version = "3.0.0", path = "../../../frame/balances" }
|
||||||
sc-service = { version = "0.8.0", features = ["test-helpers", "db"], path = "../../../client/service" }
|
sc-service = { version = "0.9.0", features = ["test-helpers", "db"], path = "../../../client/service" }
|
||||||
sc-client-db = { version = "0.8.0", path = "../../../client/db/", features = ["kvdb-rocksdb", "parity-db"] }
|
sc-client-db = { version = "0.9.0", path = "../../../client/db/", features = ["kvdb-rocksdb", "parity-db"] }
|
||||||
sc-client-api = { version = "2.0.0", path = "../../../client/api/" }
|
sc-client-api = { version = "3.0.0", path = "../../../client/api/" }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||||
pallet-contracts = { version = "2.0.0", path = "../../../frame/contracts" }
|
pallet-contracts = { version = "2.0.0", path = "../../../frame/contracts" }
|
||||||
pallet-grandpa = { version = "2.0.0", path = "../../../frame/grandpa" }
|
pallet-grandpa = { version = "3.0.0", path = "../../../frame/grandpa" }
|
||||||
pallet-indices = { version = "2.0.0", path = "../../../frame/indices" }
|
pallet-indices = { version = "3.0.0", path = "../../../frame/indices" }
|
||||||
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" }
|
sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" }
|
||||||
node-executor = { version = "2.0.0", path = "../executor" }
|
node-executor = { version = "2.0.0", path = "../executor" }
|
||||||
node-primitives = { version = "2.0.0", path = "../primitives" }
|
node-primitives = { version = "2.0.0", path = "../primitives" }
|
||||||
node-runtime = { version = "2.0.0", path = "../runtime" }
|
node-runtime = { version = "2.0.0", path = "../runtime" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-io = { version = "2.0.0", path = "../../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../../primitives/io" }
|
||||||
frame-support = { version = "2.0.0", path = "../../../frame/support" }
|
frame-support = { version = "3.0.0", path = "../../../frame/support" }
|
||||||
pallet-session = { version = "2.0.0", path = "../../../frame/session" }
|
pallet-session = { version = "3.0.0", path = "../../../frame/session" }
|
||||||
pallet-society = { version = "2.0.0", path = "../../../frame/society" }
|
pallet-society = { version = "3.0.0", path = "../../../frame/society" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
pallet-staking = { version = "2.0.0", path = "../../../frame/staking" }
|
pallet-staking = { version = "3.0.0", path = "../../../frame/staking" }
|
||||||
sc-executor = { version = "0.8.0", path = "../../../client/executor", features = ["wasmtime"] }
|
sc-executor = { version = "0.9.0", path = "../../../client/executor", features = ["wasmtime"] }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
||||||
frame-system = { version = "2.0.0", path = "../../../frame/system" }
|
frame-system = { version = "3.0.0", path = "../../../frame/system" }
|
||||||
substrate-test-client = { version = "2.0.0", path = "../../../test-utils/client" }
|
substrate-test-client = { version = "2.0.0", path = "../../../test-utils/client" }
|
||||||
pallet-timestamp = { version = "2.0.0", path = "../../../frame/timestamp" }
|
pallet-timestamp = { version = "3.0.0", path = "../../../frame/timestamp" }
|
||||||
pallet-transaction-payment = { version = "2.0.0", path = "../../../frame/transaction-payment" }
|
pallet-transaction-payment = { version = "3.0.0", path = "../../../frame/transaction-payment" }
|
||||||
pallet-treasury = { version = "2.0.0", path = "../../../frame/treasury" }
|
pallet-treasury = { version = "3.0.0", path = "../../../frame/treasury" }
|
||||||
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
|
||||||
sp-timestamp = { version = "2.0.0", default-features = false, path = "../../../primitives/timestamp" }
|
sp-timestamp = { version = "3.0.0", default-features = false, path = "../../../primitives/timestamp" }
|
||||||
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
|
sp-block-builder = { version = "3.0.0", path = "../../../primitives/block-builder" }
|
||||||
sc-block-builder = { version = "0.8.0", path = "../../../client/block-builder" }
|
sc-block-builder = { version = "0.9.0", path = "../../../client/block-builder" }
|
||||||
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
fs_extra = "1"
|
fs_extra = "1"
|
||||||
@@ -52,4 +52,4 @@ futures = "0.3.1"
|
|||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
criterion = "0.3.0"
|
criterion = "0.3.0"
|
||||||
sc-cli = { version = "0.8.0", path = "../../../client/cli" }
|
sc-cli = { version = "0.9.0", path = "../../../client/cli" }
|
||||||
|
|||||||
@@ -14,10 +14,10 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ansi_term = "0.12.1"
|
ansi_term = "0.12.1"
|
||||||
sc-keystore = { version = "2.0.0", path = "../../../client/keystore" }
|
sc-keystore = { version = "3.0.0", path = "../../../client/keystore" }
|
||||||
sc-chain-spec = { version = "2.0.0", path = "../../../client/chain-spec" }
|
sc-chain-spec = { version = "3.0.0", path = "../../../client/chain-spec" }
|
||||||
node-cli = { version = "2.0.0", path = "../../node/cli" }
|
node-cli = { version = "2.0.0", path = "../../node/cli" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-keystore = { version = "0.8.0", path = "../../../primitives/keystore" }
|
sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" }
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
structopt = "0.3.8"
|
structopt = "0.3.8"
|
||||||
|
|||||||
@@ -8,13 +8,13 @@ homepage = "https://substrate.dev"
|
|||||||
repository = "https://github.com/paritytech/substrate/"
|
repository = "https://github.com/paritytech/substrate/"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
||||||
|
[package.metadata.docs.rs]
|
||||||
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[[bin]]
|
[[bin]]
|
||||||
path = "src/main.rs"
|
path = "src/main.rs"
|
||||||
name = "subkey"
|
name = "subkey"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
|
||||||
targets = ["x86_64-unknown-linux-gnu"]
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sc-cli = { version = "0.8.0", path = "../../../client/cli" }
|
sc-cli = { version = "0.9.0", path = "../../../client/cli" }
|
||||||
structopt = "0.3.14"
|
structopt = "0.3.14"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-client-api"
|
name = "sc-client-api"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -15,32 +15,32 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" }
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
sc-executor = { version = "0.8.0", path = "../executor" }
|
sc-executor = { version = "0.9.0", path = "../executor" }
|
||||||
sp-externalities = { version = "0.8.0", path = "../../primitives/externalities" }
|
sp-externalities = { version = "0.9.0", path = "../../primitives/externalities" }
|
||||||
fnv = "1.0.6"
|
fnv = "1.0.6"
|
||||||
futures = "0.3.1"
|
futures = "0.3.1"
|
||||||
hash-db = { version = "0.15.2", default-features = false }
|
hash-db = { version = "0.15.2", default-features = false }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sp-inherents = { version = "2.0.0", default-features = false, path = "../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", default-features = false, path = "../../primitives/inherents" }
|
||||||
kvdb = "0.9.0"
|
kvdb = "0.9.0"
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
sp-database = { version = "2.0.0", path = "../../primitives/database" }
|
sp-database = { version = "3.0.0", path = "../../primitives/database" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
sp-keystore = { version = "0.8.0", default-features = false, path = "../../primitives/keystore" }
|
sp-keystore = { version = "0.9.0", default-features = false, path = "../../primitives/keystore" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-version = { version = "2.0.0", default-features = false, path = "../../primitives/version" }
|
sp-version = { version = "3.0.0", default-features = false, path = "../../primitives/version" }
|
||||||
sp-api = { version = "2.0.0", path = "../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../primitives/api" }
|
||||||
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
|
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
|
sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" }
|
||||||
sp-trie = { version = "2.0.0", path = "../../primitives/trie" }
|
sp-trie = { version = "3.0.0", path = "../../primitives/trie" }
|
||||||
sp-storage = { version = "2.0.0", path = "../../primitives/storage" }
|
sp-storage = { version = "3.0.0", path = "../../primitives/storage" }
|
||||||
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0", path = "../../utils/prometheus" }
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.9.0", path = "../../utils/prometheus" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
kvdb-memorydb = "0.9.0"
|
kvdb-memorydb = "0.9.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-authority-discovery"
|
name = "sc-authority-discovery"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
@@ -25,21 +25,21 @@ futures = "0.3.9"
|
|||||||
futures-timer = "3.0.1"
|
futures-timer = "3.0.1"
|
||||||
libp2p = { version = "0.34.0", default-features = false, features = ["kad"] }
|
libp2p = { version = "0.34.0", default-features = false, features = ["kad"] }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"}
|
||||||
prost = "0.7"
|
prost = "0.7"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sc-network = { version = "0.8.0", path = "../network" }
|
sc-network = { version = "0.9.0", path = "../network" }
|
||||||
serde_json = "1.0.41"
|
serde_json = "1.0.41"
|
||||||
sp-authority-discovery = { version = "2.0.0", path = "../../primitives/authority-discovery" }
|
sp-authority-discovery = { version = "3.0.0", path = "../../primitives/authority-discovery" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-keystore = { version = "0.8.0", path = "../../primitives/keystore" }
|
sp-keystore = { version = "0.9.0", path = "../../primitives/keystore" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-api = { version = "2.0.0", path = "../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../primitives/api" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
quickcheck = "1.0.3"
|
quickcheck = "1.0.3"
|
||||||
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
|
||||||
sc-peerset = { version = "2.0.0", path = "../peerset" }
|
sc-peerset = { version = "3.0.0", path = "../peerset" }
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client"}
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client"}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-basic-authorship"
|
name = "sc-basic-authorship"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -17,20 +17,20 @@ codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|||||||
futures = "0.3.9"
|
futures = "0.3.9"
|
||||||
futures-timer = "3.0.1"
|
futures-timer = "3.0.1"
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"}
|
||||||
sp-api = { version = "2.0.0", path = "../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../primitives/api" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" }
|
||||||
sp-inherents = { version = "2.0.0", path = "../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", path = "../../primitives/inherents" }
|
||||||
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
|
sc-telemetry = { version = "3.0.0", path = "../telemetry" }
|
||||||
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
|
||||||
sc-block-builder = { version = "0.8.0", path = "../block-builder" }
|
sc-block-builder = { version = "0.9.0", path = "../block-builder" }
|
||||||
sc-proposer-metrics = { version = "0.8.0", path = "../proposer-metrics" }
|
sc-proposer-metrics = { version = "0.9.0", path = "../proposer-metrics" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sc-transaction-pool = { version = "2.0.0", path = "../transaction-pool" }
|
sc-transaction-pool = { version = "3.0.0", path = "../transaction-pool" }
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-block-builder"
|
name = "sc-block-builder"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -14,17 +14,17 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
|
sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-api = { version = "2.0.0", path = "../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../primitives/api" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-block-builder = { version = "2.0.0", path = "../../primitives/block-builder" }
|
sp-block-builder = { version = "3.0.0", path = "../../primitives/block-builder" }
|
||||||
sp-inherents = { version = "2.0.0", path = "../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", path = "../../primitives/inherents" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { path = "../../test-utils/runtime/client" }
|
||||||
sp-trie = { version = "2.0.0", path = "../../primitives/trie" }
|
sp-trie = { version = "3.0.0", path = "../../primitives/trie" }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-chain-spec"
|
name = "sc-chain-spec"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -13,17 +13,17 @@ readme = "README.md"
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sc-chain-spec-derive = { version = "2.0.0", path = "./derive" }
|
sc-chain-spec-derive = { version = "3.0.0", path = "./derive" }
|
||||||
impl-trait-for-tuples = "0.2.1"
|
impl-trait-for-tuples = "0.2.1"
|
||||||
sc-network = { version = "0.8.0", path = "../network" }
|
sc-network = { version = "0.9.0", path = "../network" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
serde = { version = "1.0.101", features = ["derive"] }
|
serde = { version = "1.0.101", features = ["derive"] }
|
||||||
serde_json = "1.0.41"
|
serde_json = "1.0.41"
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-chain-spec = { version = "2.0.0", path = "../../primitives/chain-spec" }
|
sp-chain-spec = { version = "3.0.0", path = "../../primitives/chain-spec" }
|
||||||
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
|
sc-telemetry = { version = "3.0.0", path = "../telemetry" }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||||
sc-consensus-babe = { version = "0.8.0-rc6", path = "../consensus/babe" }
|
sc-consensus-babe = { version = "0.9.0", path = "../consensus/babe" }
|
||||||
sp-consensus-babe = { version = "0.8.0-rc6", path = "../../primitives/consensus/babe" }
|
sp-consensus-babe = { version = "0.9.0", path = "../../primitives/consensus/babe" }
|
||||||
sc-consensus-epochs = { version = "0.8.0-rc6", path = "../consensus/epochs" }
|
sc-consensus-epochs = { version = "0.9.0", path = "../consensus/epochs" }
|
||||||
sc-finality-grandpa = { version = "0.8.0-rc6", path = "../finality-grandpa" }
|
sc-finality-grandpa = { version = "0.9.0", path = "../finality-grandpa" }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-chain-spec-derive"
|
name = "sc-chain-spec-derive"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-cli"
|
name = "sc-cli"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
description = "Substrate CLI interface."
|
description = "Substrate CLI interface."
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -24,22 +24,22 @@ hex = "0.4.2"
|
|||||||
rand = "0.7.3"
|
rand = "0.7.3"
|
||||||
tiny-bip39 = "0.8.0"
|
tiny-bip39 = "0.8.0"
|
||||||
serde_json = "1.0.41"
|
serde_json = "1.0.41"
|
||||||
sc-keystore = { version = "2.0.0", path = "../keystore" }
|
sc-keystore = { version = "3.0.0", path = "../keystore" }
|
||||||
sp-panic-handler = { version = "2.0.0", path = "../../primitives/panic-handler" }
|
sp-panic-handler = { version = "3.0.0", path = "../../primitives/panic-handler" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sc-network = { version = "0.8.0", path = "../network" }
|
sc-network = { version = "0.9.0", path = "../network" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
|
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
|
||||||
sp-version = { version = "2.0.0", path = "../../primitives/version" }
|
sp-version = { version = "3.0.0", path = "../../primitives/version" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-keystore = { version = "0.8.0", path = "../../primitives/keystore" }
|
sp-keystore = { version = "0.9.0", path = "../../primitives/keystore" }
|
||||||
sc-service = { version = "0.8.0", default-features = false, path = "../service" }
|
sc-service = { version = "0.9.0", default-features = false, path = "../service" }
|
||||||
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
|
sc-telemetry = { version = "3.0.0", path = "../telemetry" }
|
||||||
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
|
sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" }
|
||||||
names = "0.11.0"
|
names = "0.11.0"
|
||||||
structopt = "0.3.8"
|
structopt = "0.3.8"
|
||||||
sc-tracing = { version = "2.0.0", path = "../tracing" }
|
sc-tracing = { version = "3.0.0", path = "../tracing" }
|
||||||
chrono = "0.4.10"
|
chrono = "0.4.10"
|
||||||
serde = "1.0.111"
|
serde = "1.0.111"
|
||||||
thiserror = "1.0.21"
|
thiserror = "1.0.21"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-consensus-aura"
|
name = "sc-consensus-aura"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
description = "Aura consensus algorithm for substrate"
|
description = "Aura consensus algorithm for substrate"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -13,42 +13,42 @@ readme = "README.md"
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" }
|
sp-application-crypto = { version = "3.0.0", path = "../../../primitives/application-crypto" }
|
||||||
sp-consensus-aura = { version = "0.8.0", path = "../../../primitives/consensus/aura" }
|
sp-consensus-aura = { version = "0.9.0", path = "../../../primitives/consensus/aura" }
|
||||||
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
|
sp-block-builder = { version = "3.0.0", path = "../../../primitives/block-builder" }
|
||||||
sc-block-builder = { version = "0.8.0", path = "../../block-builder" }
|
sc-block-builder = { version = "0.9.0", path = "../../block-builder" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../../api" }
|
sc-client-api = { version = "3.0.0", path = "../../api" }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
||||||
sp-consensus-slots = { version = "0.8.0", path = "../../../primitives/consensus/slots" }
|
sp-consensus-slots = { version = "0.9.0", path = "../../../primitives/consensus/slots" }
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
futures = "0.3.9"
|
futures = "0.3.9"
|
||||||
futures-timer = "3.0.1"
|
futures-timer = "3.0.1"
|
||||||
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
sp-io = { version = "2.0.0", path = "../../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../../primitives/io" }
|
||||||
sp-version = { version = "2.0.0", path = "../../../primitives/version" }
|
sp-version = { version = "3.0.0", path = "../../../primitives/version" }
|
||||||
sc-consensus-slots = { version = "0.8.0", path = "../slots" }
|
sc-consensus-slots = { version = "0.9.0", path = "../slots" }
|
||||||
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
sp-timestamp = { version = "2.0.0", path = "../../../primitives/timestamp" }
|
sp-timestamp = { version = "3.0.0", path = "../../../primitives/timestamp" }
|
||||||
sp-keystore = { version = "0.8.0", path = "../../../primitives/keystore" }
|
sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" }
|
||||||
sc-telemetry = { version = "2.0.0", path = "../../telemetry" }
|
sc-telemetry = { version = "3.0.0", path = "../../telemetry" }
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0"}
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.9.0"}
|
||||||
# We enable it only for web-wasm check
|
# We enable it only for web-wasm check
|
||||||
# See https://docs.rs/getrandom/0.2.1/getrandom/#webassembly-support
|
# See https://docs.rs/getrandom/0.2.1/getrandom/#webassembly-support
|
||||||
getrandom = { version = "0.2", features = ["js"], optional = true }
|
getrandom = { version = "0.2", features = ["js"], optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" }
|
sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" }
|
||||||
sp-tracing = { version = "2.0.0", path = "../../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../../primitives/tracing" }
|
||||||
sc-executor = { version = "0.8.0", path = "../../executor" }
|
sc-executor = { version = "0.9.0", path = "../../executor" }
|
||||||
sc-keystore = { version = "2.0.0", path = "../../keystore" }
|
sc-keystore = { version = "3.0.0", path = "../../keystore" }
|
||||||
sc-network = { version = "0.8.0", path = "../../network" }
|
sc-network = { version = "0.9.0", path = "../../network" }
|
||||||
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
||||||
sc-service = { version = "0.8.0", default-features = false, path = "../../service" }
|
sc-service = { version = "0.9.0", default-features = false, path = "../../service" }
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-consensus-babe"
|
name = "sc-consensus-babe"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
description = "BABE consensus algorithm for substrate"
|
description = "BABE consensus algorithm for substrate"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -15,34 +15,34 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
||||||
sp-consensus-babe = { version = "0.8.0", path = "../../../primitives/consensus/babe" }
|
sp-consensus-babe = { version = "0.9.0", path = "../../../primitives/consensus/babe" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" }
|
sp-application-crypto = { version = "3.0.0", path = "../../../primitives/application-crypto" }
|
||||||
sp-keystore = { version = "0.8.0", path = "../../../primitives/keystore" }
|
sp-keystore = { version = "0.9.0", path = "../../../primitives/keystore" }
|
||||||
num-bigint = "0.2.3"
|
num-bigint = "0.2.3"
|
||||||
num-rational = "0.2.2"
|
num-rational = "0.2.2"
|
||||||
num-traits = "0.2.8"
|
num-traits = "0.2.8"
|
||||||
serde = { version = "1.0.104", features = ["derive"] }
|
serde = { version = "1.0.104", features = ["derive"] }
|
||||||
sp-version = { version = "2.0.0", path = "../../../primitives/version" }
|
sp-version = { version = "3.0.0", path = "../../../primitives/version" }
|
||||||
sp-io = { version = "2.0.0", path = "../../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../../primitives/io" }
|
||||||
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
|
||||||
sp-timestamp = { version = "2.0.0", path = "../../../primitives/timestamp" }
|
sp-timestamp = { version = "3.0.0", path = "../../../primitives/timestamp" }
|
||||||
sc-telemetry = { version = "2.0.0", path = "../../telemetry" }
|
sc-telemetry = { version = "3.0.0", path = "../../telemetry" }
|
||||||
sc-keystore = { version = "2.0.0", path = "../../keystore" }
|
sc-keystore = { version = "3.0.0", path = "../../keystore" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../../api" }
|
sc-client-api = { version = "3.0.0", path = "../../api" }
|
||||||
sc-consensus-epochs = { version = "0.8.0", path = "../epochs" }
|
sc-consensus-epochs = { version = "0.9.0", path = "../epochs" }
|
||||||
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
|
||||||
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
|
sp-block-builder = { version = "3.0.0", path = "../../../primitives/block-builder" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
||||||
sp-consensus-slots = { version = "0.8.0", path = "../../../primitives/consensus/slots" }
|
sp-consensus-slots = { version = "0.9.0", path = "../../../primitives/consensus/slots" }
|
||||||
sp-consensus-vrf = { version = "0.8.0", path = "../../../primitives/consensus/vrf" }
|
sp-consensus-vrf = { version = "0.9.0", path = "../../../primitives/consensus/vrf" }
|
||||||
sc-consensus-uncles = { version = "0.8.0", path = "../uncles" }
|
sc-consensus-uncles = { version = "0.9.0", path = "../uncles" }
|
||||||
sc-consensus-slots = { version = "0.8.0", path = "../slots" }
|
sc-consensus-slots = { version = "0.9.0", path = "../slots" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
sp-utils = { version = "2.0.0", path = "../../../primitives/utils" }
|
sp-utils = { version = "3.0.0", path = "../../../primitives/utils" }
|
||||||
fork-tree = { version = "2.0.0", path = "../../../utils/fork-tree" }
|
fork-tree = { version = "3.0.0", path = "../../../utils/fork-tree" }
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0"}
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.9.0"}
|
||||||
futures = "0.3.9"
|
futures = "0.3.9"
|
||||||
futures-timer = "3.0.1"
|
futures-timer = "3.0.1"
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
@@ -55,14 +55,14 @@ derive_more = "0.99.2"
|
|||||||
retain_mut = "0.1.2"
|
retain_mut = "0.1.2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" }
|
sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" }
|
||||||
sp-tracing = { version = "2.0.0", path = "../../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../../primitives/tracing" }
|
||||||
sc-executor = { version = "0.8.0", path = "../../executor" }
|
sc-executor = { version = "0.9.0", path = "../../executor" }
|
||||||
sc-network = { version = "0.8.0", path = "../../network" }
|
sc-network = { version = "0.9.0", path = "../../network" }
|
||||||
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
||||||
sc-service = { version = "0.8.0", default-features = false, path = "../../service" }
|
sc-service = { version = "0.9.0", default-features = false, path = "../../service" }
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||||
sc-block-builder = { version = "0.8.0", path = "../../block-builder" }
|
sc-block-builder = { version = "0.9.0", path = "../../block-builder" }
|
||||||
rand_chacha = "0.2.2"
|
rand_chacha = "0.2.2"
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-consensus-babe-rpc"
|
name = "sc-consensus-babe-rpc"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
description = "RPC extensions for the BABE consensus algorithm"
|
description = "RPC extensions for the BABE consensus algorithm"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -13,28 +13,28 @@ readme = "README.md"
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sc-consensus-babe = { version = "0.8.0", path = "../" }
|
sc-consensus-babe = { version = "0.9.0", path = "../" }
|
||||||
sc-rpc-api = { version = "0.8.0", path = "../../../rpc-api" }
|
sc-rpc-api = { version = "0.9.0", path = "../../../rpc-api" }
|
||||||
jsonrpc-core = "15.1.0"
|
jsonrpc-core = "15.1.0"
|
||||||
jsonrpc-core-client = "15.1.0"
|
jsonrpc-core-client = "15.1.0"
|
||||||
jsonrpc-derive = "15.1.0"
|
jsonrpc-derive = "15.1.0"
|
||||||
sp-consensus-babe = { version = "0.8.0", path = "../../../../primitives/consensus/babe" }
|
sp-consensus-babe = { version = "0.9.0", path = "../../../../primitives/consensus/babe" }
|
||||||
serde = { version = "1.0.104", features=["derive"] }
|
serde = { version = "1.0.104", features=["derive"] }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../../primitives/blockchain" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../../primitives/runtime" }
|
||||||
sc-consensus-epochs = { version = "0.8.0", path = "../../epochs" }
|
sc-consensus-epochs = { version = "0.9.0", path = "../../epochs" }
|
||||||
futures = { version = "0.3.4", features = ["compat"] }
|
futures = { version = "0.3.4", features = ["compat"] }
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
sp-api = { version = "2.0.0", path = "../../../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../../../primitives/api" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../../primitives/consensus/common" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../../primitives/core" }
|
||||||
sp-application-crypto = { version = "2.0.0", path = "../../../../primitives/application-crypto" }
|
sp-application-crypto = { version = "3.0.0", path = "../../../../primitives/application-crypto" }
|
||||||
sp-keystore = { version = "0.8.0", path = "../../../../primitives/keystore" }
|
sp-keystore = { version = "0.9.0", path = "../../../../primitives/keystore" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sc-consensus = { version = "0.8.0", path = "../../../consensus/common" }
|
sc-consensus = { version = "0.9.0", path = "../../../consensus/common" }
|
||||||
serde_json = "1.0.50"
|
serde_json = "1.0.50"
|
||||||
sp-keyring = { version = "2.0.0", path = "../../../../primitives/keyring" }
|
sp-keyring = { version = "3.0.0", path = "../../../../primitives/keyring" }
|
||||||
sc-keystore = { version = "2.0.0", path = "../../../keystore" }
|
sc-keystore = { version = "3.0.0", path = "../../../keystore" }
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../../../test-utils/runtime/client" }
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-consensus"
|
name = "sc-consensus"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -13,7 +13,7 @@ readme = "README.md"
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sc-client-api = { version = "2.0.0", path = "../../api" }
|
sc-client-api = { version = "3.0.0", path = "../../api" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-consensus-epochs"
|
name = "sc-consensus-epochs"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
description = "Generic epochs-based utilities for consensus"
|
description = "Generic epochs-based utilities for consensus"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
fork-tree = { version = "2.0.0", path = "../../../utils/fork-tree" }
|
fork-tree = { version = "3.0.0", path = "../../../utils/fork-tree" }
|
||||||
sp-runtime = { path = "../../../primitives/runtime" , version = "2.0.0"}
|
sp-runtime = { path = "../../../primitives/runtime" , version = "3.0.0"}
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
sc-client-api = { path = "../../api" , version = "2.0.0"}
|
sc-client-api = { path = "../../api" , version = "3.0.0"}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-consensus-manual-seal"
|
name = "sc-consensus-manual-seal"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
description = "Manual sealing engine for Substrate"
|
description = "Manual sealing engine for Substrate"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -24,29 +24,29 @@ codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|||||||
serde = { version = "1.0", features=["derive"] }
|
serde = { version = "1.0", features=["derive"] }
|
||||||
assert_matches = "1.3.0"
|
assert_matches = "1.3.0"
|
||||||
|
|
||||||
sc-client-api = { path = "../../api", version = "2.0.0" }
|
sc-client-api = { path = "../../api", version = "3.0.0"}
|
||||||
sc-consensus-babe = { path = "../../consensus/babe", version = "0.8.0" }
|
sc-consensus-babe = { path = "../../consensus/babe", version = "0.9.0"}
|
||||||
sc-consensus-epochs = { path = "../../consensus/epochs", version = "0.8.0" }
|
sc-consensus-epochs = { path = "../../consensus/epochs", version = "0.9.0"}
|
||||||
sp-consensus-babe = { path = "../../../primitives/consensus/babe", version = "0.8.0" }
|
sp-consensus-babe = { path = "../../../primitives/consensus/babe", version = "0.9.0"}
|
||||||
|
|
||||||
sc-transaction-pool = { path = "../../transaction-pool", version = "2.0.0" }
|
sc-transaction-pool = { path = "../../transaction-pool", version = "3.0.0"}
|
||||||
sp-blockchain = { path = "../../../primitives/blockchain", version = "2.0.0" }
|
sp-blockchain = { path = "../../../primitives/blockchain", version = "3.0.0"}
|
||||||
sp-consensus = { path = "../../../primitives/consensus/common", version = "0.8.0" }
|
sp-consensus = { path = "../../../primitives/consensus/common", version = "0.9.0"}
|
||||||
sp-consensus-slots = { path = "../../../primitives/consensus/slots", version = "0.8.1" }
|
sp-consensus-slots = { path = "../../../primitives/consensus/slots", version = "0.9.0"}
|
||||||
sp-inherents = { path = "../../../primitives/inherents", version = "2.0.0" }
|
sp-inherents = { path = "../../../primitives/inherents", version = "3.0.0"}
|
||||||
sp-runtime = { path = "../../../primitives/runtime", version = "2.0.0" }
|
sp-runtime = { path = "../../../primitives/runtime", version = "3.0.0"}
|
||||||
sp-core = { path = "../../../primitives/core", version = "2.0.0" }
|
sp-core = { path = "../../../primitives/core", version = "3.0.0"}
|
||||||
sp-keystore = { path = "../../../primitives/keystore", version = "0.8.0" }
|
sp-keystore = { path = "../../../primitives/keystore", version = "0.9.0"}
|
||||||
sp-keyring = { path = "../../../primitives/keyring", version = "2.0.0" }
|
sp-keyring = { path = "../../../primitives/keyring", version = "3.0.0"}
|
||||||
sp-api = { path = "../../../primitives/api", version = "2.0.0" }
|
sp-api = { path = "../../../primitives/api", version = "3.0.0"}
|
||||||
sp-transaction-pool = { path = "../../../primitives/transaction-pool", version = "2.0.0" }
|
sp-transaction-pool = { path = "../../../primitives/transaction-pool", version = "3.0.0"}
|
||||||
sp-timestamp = { path = "../../../primitives/timestamp", version = "2.0.0" }
|
sp-timestamp = { path = "../../../primitives/timestamp", version = "3.0.0"}
|
||||||
|
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0" }
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.9.0"}
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.2", features = ["rt-core", "macros"] }
|
tokio = { version = "0.2", features = ["rt-core", "macros"] }
|
||||||
sc-basic-authorship = { path = "../../basic-authorship", version = "0.8.0" }
|
sc-basic-authorship = { path = "../../basic-authorship", version = "0.9.0"}
|
||||||
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client", version = "2.0.0" }
|
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client", version = "2.0.0" }
|
||||||
substrate-test-runtime-transaction-pool = { path = "../../../test-utils/runtime/transaction-pool", version = "2.0.0" }
|
substrate-test-runtime-transaction-pool = { path = "../../../test-utils/runtime/transaction-pool", version = "2.0.0" }
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-consensus-pow"
|
name = "sc-consensus-pow"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
description = "PoW consensus algorithm for substrate"
|
description = "PoW consensus algorithm for substrate"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -14,19 +14,19 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../../api" }
|
sc-client-api = { version = "3.0.0", path = "../../api" }
|
||||||
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
|
sp-block-builder = { version = "3.0.0", path = "../../../primitives/block-builder" }
|
||||||
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
|
||||||
sp-consensus-pow = { version = "0.8.0", path = "../../../primitives/consensus/pow" }
|
sp-consensus-pow = { version = "0.9.0", path = "../../../primitives/consensus/pow" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
futures = { version = "0.3.1", features = ["compat"] }
|
futures = { version = "0.3.1", features = ["compat"] }
|
||||||
futures-timer = "3.0.1"
|
futures-timer = "3.0.1"
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
sp-timestamp = { version = "2.0.0", path = "../../../primitives/timestamp" }
|
sp-timestamp = { version = "3.0.0", path = "../../../primitives/timestamp" }
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0"}
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.9.0"}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-consensus-slots"
|
name = "sc-consensus-slots"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
description = "Generic slots-based utilities for consensus"
|
description = "Generic slots-based utilities for consensus"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -15,19 +15,19 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../../api" }
|
sc-client-api = { version = "3.0.0", path = "../../api" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-trie = { version = "2.0.0", path = "../../../primitives/trie" }
|
sp-trie = { version = "3.0.0", path = "../../../primitives/trie" }
|
||||||
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" }
|
sp-application-crypto = { version = "3.0.0", path = "../../../primitives/application-crypto" }
|
||||||
sp-arithmetic = { version = "2.0.0", path = "../../../primitives/arithmetic" }
|
sp-arithmetic = { version = "3.0.0", path = "../../../primitives/arithmetic" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
sp-consensus-slots = { version = "0.8.0", path = "../../../primitives/consensus/slots" }
|
sp-consensus-slots = { version = "0.9.0", path = "../../../primitives/consensus/slots" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
sp-state-machine = { version = "0.8.0", path = "../../../primitives/state-machine" }
|
sp-state-machine = { version = "0.9.0", path = "../../../primitives/state-machine" }
|
||||||
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
|
||||||
sc-telemetry = { version = "2.0.0", path = "../../telemetry" }
|
sc-telemetry = { version = "3.0.0", path = "../../telemetry" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
||||||
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
|
||||||
futures = "0.3.9"
|
futures = "0.3.9"
|
||||||
futures-timer = "3.0.1"
|
futures-timer = "3.0.1"
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-consensus-uncles"
|
name = "sc-consensus-uncles"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
description = "Generic uncle inclusion utilities for consensus"
|
description = "Generic uncle inclusion utilities for consensus"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -13,10 +13,10 @@ readme = "README.md"
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sc-client-api = { version = "2.0.0", path = "../../api" }
|
sc-client-api = { version = "3.0.0", path = "../../api" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
sp-authorship = { version = "2.0.0", path = "../../../primitives/authorship" }
|
sp-authorship = { version = "3.0.0", path = "../../../primitives/authorship" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
||||||
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", path = "../../../primitives/inherents" }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-client-db"
|
name = "sc-client-db"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -24,23 +24,23 @@ parity-util-mem = { version = "0.9.0", default-features = false, features = ["st
|
|||||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
||||||
blake2-rfc = "0.2.18"
|
blake2-rfc = "0.2.18"
|
||||||
|
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sp-arithmetic = { version = "2.0.0", path = "../../primitives/arithmetic" }
|
sp-arithmetic = { version = "3.0.0", path = "../../primitives/arithmetic" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
|
sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" }
|
||||||
sc-executor = { version = "0.8.0", path = "../executor" }
|
sc-executor = { version = "0.9.0", path = "../executor" }
|
||||||
sc-state-db = { version = "0.8.0", path = "../state-db" }
|
sc-state-db = { version = "0.9.0", path = "../state-db" }
|
||||||
sp-trie = { version = "2.0.0", path = "../../primitives/trie" }
|
sp-trie = { version = "3.0.0", path = "../../primitives/trie" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sp-database = { version = "2.0.0", path = "../../primitives/database" }
|
sp-database = { version = "3.0.0", path = "../../primitives/database" }
|
||||||
parity-db = { version = "0.2.2", optional = true }
|
parity-db = { version = "0.2.2", optional = true }
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0", path = "../../utils/prometheus" }
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.9.0", path = "../../utils/prometheus" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
|
sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" }
|
||||||
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||||
quickcheck = "1.0.3"
|
quickcheck = "1.0.3"
|
||||||
kvdb-rocksdb = "0.11.0"
|
kvdb-rocksdb = "0.11.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-executor"
|
name = "sc-executor"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -16,23 +16,23 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||||
sp-io = { version = "2.0.0", path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../primitives/io" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-tasks = { version = "2.0.0", path = "../../primitives/tasks" }
|
sp-tasks = { version = "3.0.0", path = "../../primitives/tasks" }
|
||||||
sp-trie = { version = "2.0.0", path = "../../primitives/trie" }
|
sp-trie = { version = "3.0.0", path = "../../primitives/trie" }
|
||||||
sp-serializer = { version = "2.0.0", path = "../../primitives/serializer" }
|
sp-serializer = { version = "3.0.0", path = "../../primitives/serializer" }
|
||||||
sp-version = { version = "2.0.0", path = "../../primitives/version" }
|
sp-version = { version = "3.0.0", path = "../../primitives/version" }
|
||||||
sp-panic-handler = { version = "2.0.0", path = "../../primitives/panic-handler" }
|
sp-panic-handler = { version = "3.0.0", path = "../../primitives/panic-handler" }
|
||||||
wasmi = "0.6.2"
|
wasmi = "0.6.2"
|
||||||
parity-wasm = "0.41.0"
|
parity-wasm = "0.41.0"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
sp-api = { version = "2.0.0", path = "../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../primitives/api" }
|
||||||
sp-wasm-interface = { version = "2.0.0", path = "../../primitives/wasm-interface" }
|
sp-wasm-interface = { version = "3.0.0", path = "../../primitives/wasm-interface" }
|
||||||
sp-runtime-interface = { version = "2.0.0", path = "../../primitives/runtime-interface" }
|
sp-runtime-interface = { version = "3.0.0", path = "../../primitives/runtime-interface" }
|
||||||
sp-externalities = { version = "0.8.0", path = "../../primitives/externalities" }
|
sp-externalities = { version = "0.9.0", path = "../../primitives/externalities" }
|
||||||
sc-executor-common = { version = "0.8.0", path = "common" }
|
sc-executor-common = { version = "0.9.0", path = "common" }
|
||||||
sc-executor-wasmi = { version = "0.8.0", path = "wasmi" }
|
sc-executor-wasmi = { version = "0.9.0", path = "wasmi" }
|
||||||
sc-executor-wasmtime = { version = "0.8.0", path = "wasmtime", optional = true }
|
sc-executor-wasmtime = { version = "0.9.0", path = "wasmtime", optional = true }
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
libsecp256k1 = "0.3.4"
|
libsecp256k1 = "0.3.4"
|
||||||
@@ -43,10 +43,10 @@ wat = "1.0"
|
|||||||
hex-literal = "0.3.1"
|
hex-literal = "0.3.1"
|
||||||
sc-runtime-test = { version = "2.0.0", path = "runtime-test" }
|
sc-runtime-test = { version = "2.0.0", path = "runtime-test" }
|
||||||
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" }
|
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" }
|
||||||
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
|
sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
|
||||||
sc-tracing = { version = "2.0.0", path = "../tracing" }
|
sc-tracing = { version = "3.0.0", path = "../tracing" }
|
||||||
tracing = "0.1.22"
|
tracing = "0.1.22"
|
||||||
tracing-subscriber = "0.2.15"
|
tracing-subscriber = "0.2.15"
|
||||||
paste = "1.0"
|
paste = "1.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-executor-common"
|
name = "sc-executor-common"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -18,10 +18,10 @@ derive_more = "0.99.2"
|
|||||||
parity-wasm = "0.41.0"
|
parity-wasm = "0.41.0"
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||||
wasmi = "0.6.2"
|
wasmi = "0.6.2"
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-allocator = { version = "2.0.0", path = "../../../primitives/allocator" }
|
sp-allocator = { version = "3.0.0", path = "../../../primitives/allocator" }
|
||||||
sp-wasm-interface = { version = "2.0.0", path = "../../../primitives/wasm-interface" }
|
sp-wasm-interface = { version = "3.0.0", path = "../../../primitives/wasm-interface" }
|
||||||
sp-serializer = { version = "2.0.0", path = "../../../primitives/serializer" }
|
sp-serializer = { version = "3.0.0", path = "../../../primitives/serializer" }
|
||||||
thiserror = "1.0.21"
|
thiserror = "1.0.21"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|||||||
@@ -13,16 +13,16 @@ repository = "https://github.com/paritytech/substrate/"
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sp-allocator = { version = "2.0.0", default-features = false, path = "../../../primitives/allocator" }
|
sp-allocator = { version = "3.0.0", default-features = false, path = "../../../primitives/allocator" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../../primitives/core" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||||
sp-sandbox = { version = "0.8.0", default-features = false, path = "../../../primitives/sandbox" }
|
sp-sandbox = { version = "0.9.0", default-features = false, path = "../../../primitives/sandbox" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" }
|
||||||
sp-tasks = { version = "2.0.0", default-features = false, path = "../../../primitives/tasks" }
|
sp-tasks = { version = "3.0.0", default-features = false, path = "../../../primitives/tasks" }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
substrate-wasm-builder = { version = "3.0.0", path = "../../../utils/wasm-builder" }
|
substrate-wasm-builder = { version = "4.0.0", path = "../../../utils/wasm-builder" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = [ "std" ]
|
default = [ "std" ]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-executor-wasmi"
|
name = "sc-executor-wasmi"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -17,8 +17,8 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
wasmi = "0.6.2"
|
wasmi = "0.6.2"
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||||
sc-executor-common = { version = "0.8.0", path = "../common" }
|
sc-executor-common = { version = "0.9.0", path = "../common" }
|
||||||
sp-wasm-interface = { version = "2.0.0", path = "../../../primitives/wasm-interface" }
|
sp-wasm-interface = { version = "3.0.0", path = "../../../primitives/wasm-interface" }
|
||||||
sp-runtime-interface = { version = "2.0.0", path = "../../../primitives/runtime-interface" }
|
sp-runtime-interface = { version = "3.0.0", path = "../../../primitives/runtime-interface" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-allocator = { version = "2.0.0", path = "../../../primitives/allocator" }
|
sp-allocator = { version = "3.0.0", path = "../../../primitives/allocator" }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-executor-wasmtime"
|
name = "sc-executor-wasmtime"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -17,11 +17,11 @@ log = "0.4.8"
|
|||||||
scoped-tls = "1.0"
|
scoped-tls = "1.0"
|
||||||
parity-wasm = "0.41.0"
|
parity-wasm = "0.41.0"
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||||
sc-executor-common = { version = "0.8.0", path = "../common" }
|
sc-executor-common = { version = "0.9.0", path = "../common" }
|
||||||
sp-wasm-interface = { version = "2.0.0", path = "../../../primitives/wasm-interface" }
|
sp-wasm-interface = { version = "3.0.0", path = "../../../primitives/wasm-interface" }
|
||||||
sp-runtime-interface = { version = "2.0.0", path = "../../../primitives/runtime-interface" }
|
sp-runtime-interface = { version = "3.0.0", path = "../../../primitives/runtime-interface" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-allocator = { version = "2.0.0", path = "../../../primitives/allocator" }
|
sp-allocator = { version = "3.0.0", path = "../../../primitives/allocator" }
|
||||||
wasmtime = "0.22"
|
wasmtime = "0.22"
|
||||||
pwasm-utils = "0.14.0"
|
pwasm-utils = "0.14.0"
|
||||||
|
|
||||||
|
|||||||
@@ -13,12 +13,12 @@ repository = "https://github.com/paritytech/substrate/"
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sc-network = { version = "0.8.0", path = "../network" }
|
sc-network = { version = "0.9.0", path = "../network" }
|
||||||
sc-finality-grandpa = { version = "0.8.0", path = "../finality-grandpa" }
|
sc-finality-grandpa = { version = "0.9.0", path = "../finality-grandpa" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sc-service = { version = "0.8.0", path = "../service" }
|
sc-service = { version = "0.9.0", path = "../service" }
|
||||||
futures = "0.3.8"
|
futures = "0.3.8"
|
||||||
log = "0.4.11"
|
log = "0.4.11"
|
||||||
derive_more = "0.99.11"
|
derive_more = "0.99.11"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-finality-grandpa"
|
name = "sc-finality-grandpa"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -16,33 +16,33 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
fork-tree = { version = "2.0.0", path = "../../utils/fork-tree" }
|
fork-tree = { version = "3.0.0", path = "../../utils/fork-tree" }
|
||||||
futures = "0.3.9"
|
futures = "0.3.9"
|
||||||
futures-timer = "3.0.1"
|
futures-timer = "3.0.1"
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
parity-scale-codec = { version = "2.0.0", features = ["derive"] }
|
parity-scale-codec = { version = "2.0.0", features = ["derive"] }
|
||||||
sp-application-crypto = { version = "2.0.0", path = "../../primitives/application-crypto" }
|
sp-application-crypto = { version = "3.0.0", path = "../../primitives/application-crypto" }
|
||||||
sp-arithmetic = { version = "2.0.0", path = "../../primitives/arithmetic" }
|
sp-arithmetic = { version = "3.0.0", path = "../../primitives/arithmetic" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
|
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" }
|
||||||
sc-consensus = { version = "0.8.0", path = "../consensus/common" }
|
sc-consensus = { version = "0.9.0", path = "../consensus/common" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-keystore = { version = "0.8.0", path = "../../primitives/keystore" }
|
sp-keystore = { version = "0.9.0", path = "../../primitives/keystore" }
|
||||||
sp-api = { version = "2.0.0", path = "../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../primitives/api" }
|
||||||
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
|
sc-telemetry = { version = "3.0.0", path = "../telemetry" }
|
||||||
sc-keystore = { version = "2.0.0", path = "../keystore" }
|
sc-keystore = { version = "3.0.0", path = "../keystore" }
|
||||||
serde_json = "1.0.41"
|
serde_json = "1.0.41"
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sp-inherents = { version = "2.0.0", path = "../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", path = "../../primitives/inherents" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sc-network = { version = "0.8.0", path = "../network" }
|
sc-network = { version = "0.9.0", path = "../network" }
|
||||||
sc-network-gossip = { version = "0.8.0", path = "../network-gossip" }
|
sc-network-gossip = { version = "0.9.0", path = "../network-gossip" }
|
||||||
sp-finality-grandpa = { version = "2.0.0", path = "../../primitives/finality-grandpa" }
|
sp-finality-grandpa = { version = "3.0.0", path = "../../primitives/finality-grandpa" }
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"}
|
||||||
sc-block-builder = { version = "0.8.0", path = "../block-builder" }
|
sc-block-builder = { version = "0.9.0", path = "../block-builder" }
|
||||||
finality-grandpa = { version = "0.13.0", features = ["derive-codec"] }
|
finality-grandpa = { version = "0.13.0", features = ["derive-codec"] }
|
||||||
pin-project = "1.0.4"
|
pin-project = "1.0.4"
|
||||||
linked-hash-map = "0.5.2"
|
linked-hash-map = "0.5.2"
|
||||||
@@ -50,13 +50,13 @@ linked-hash-map = "0.5.2"
|
|||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assert_matches = "1.3.0"
|
assert_matches = "1.3.0"
|
||||||
finality-grandpa = { version = "0.13.0", features = ["derive-codec", "test-helpers"] }
|
finality-grandpa = { version = "0.13.0", features = ["derive-codec", "test-helpers"] }
|
||||||
sc-network = { version = "0.8.0", path = "../network" }
|
sc-network = { version = "0.9.0", path = "../network" }
|
||||||
sc-network-test = { version = "0.8.0", path = "../network/test" }
|
sc-network-test = { version = "0.8.0", path = "../network/test" }
|
||||||
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
|
sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" }
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||||
sp-consensus-babe = { version = "0.8.0", path = "../../primitives/consensus/babe" }
|
sp-consensus-babe = { version = "0.9.0", path = "../../primitives/consensus/babe" }
|
||||||
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
|
sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" }
|
||||||
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
|
||||||
tokio = { version = "0.2", features = ["rt-core"] }
|
tokio = { version = "0.2", features = ["rt-core"] }
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
sp-api = { version = "2.0.0", path = "../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../primitives/api" }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-finality-grandpa-rpc"
|
name = "sc-finality-grandpa-rpc"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
description = "RPC extensions for the GRANDPA finality gadget"
|
description = "RPC extensions for the GRANDPA finality gadget"
|
||||||
repository = "https://github.com/paritytech/substrate/"
|
repository = "https://github.com/paritytech/substrate/"
|
||||||
@@ -9,11 +9,11 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sc-finality-grandpa = { version = "0.8.0", path = "../" }
|
sc-finality-grandpa = { version = "0.9.0", path = "../" }
|
||||||
sc-rpc = { version = "2.0.0", path = "../../rpc" }
|
sc-rpc = { version = "3.0.0", path = "../../rpc" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
finality-grandpa = { version = "0.13.0", features = ["derive-codec"] }
|
finality-grandpa = { version = "0.13.0", features = ["derive-codec"] }
|
||||||
jsonrpc-core = "15.1.0"
|
jsonrpc-core = "15.1.0"
|
||||||
jsonrpc-core-client = "15.1.0"
|
jsonrpc-core-client = "15.1.0"
|
||||||
@@ -25,15 +25,15 @@ serde_json = "1.0.50"
|
|||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
parity-scale-codec = { version = "2.0.0", features = ["derive"] }
|
parity-scale-codec = { version = "2.0.0", features = ["derive"] }
|
||||||
sc-client-api = { version = "2.0.0", path = "../../api" }
|
sc-client-api = { version = "3.0.0", path = "../../api" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sc-block-builder = { version = "0.8.0", path = "../../block-builder" }
|
sc-block-builder = { version = "0.9.0", path = "../../block-builder" }
|
||||||
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
sc-network-test = { version = "0.8.0", path = "../../network/test" }
|
||||||
sc-rpc = { version = "2.0.0", path = "../../rpc", features = ["test-helpers"] }
|
sc-rpc = { version = "3.0.0", path = "../../rpc", features = ["test-helpers"] }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-finality-grandpa = { version = "2.0.0", path = "../../../primitives/finality-grandpa" }
|
sp-finality-grandpa = { version = "3.0.0", path = "../../../primitives/finality-grandpa" }
|
||||||
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" }
|
sp-keyring = { version = "3.0.0", path = "../../../primitives/keyring" }
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||||
lazy_static = "1.4"
|
lazy_static = "1.4"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-informant"
|
name = "sc-informant"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
description = "Substrate informant."
|
description = "Substrate informant."
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -17,10 +17,10 @@ ansi_term = "0.12.1"
|
|||||||
futures = "0.3.9"
|
futures = "0.3.9"
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
|
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sc-network = { version = "0.8.0", path = "../network" }
|
sc-network = { version = "0.9.0", path = "../network" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
|
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
|
||||||
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
|
||||||
wasm-timer = "0.2"
|
wasm-timer = "0.2"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-keystore"
|
name = "sc-keystore"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -19,9 +19,9 @@ async-trait = "0.1.30"
|
|||||||
derive_more = "0.99.2"
|
derive_more = "0.99.2"
|
||||||
futures = "0.3.9"
|
futures = "0.3.9"
|
||||||
futures-util = "0.3.4"
|
futures-util = "0.3.4"
|
||||||
sp-application-crypto = { version = "2.0.0", path = "../../primitives/application-crypto" }
|
sp-application-crypto = { version = "3.0.0", path = "../../primitives/application-crypto" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-keystore = { version = "0.8.0", path = "../../primitives/keystore" }
|
sp-keystore = { version = "0.9.0", path = "../../primitives/keystore" }
|
||||||
hex = "0.4.0"
|
hex = "0.4.0"
|
||||||
merlin = { version = "2.0", default-features = false }
|
merlin = { version = "2.0", default-features = false }
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
description = "components for a light client"
|
description = "components for a light client"
|
||||||
name = "sc-light"
|
name = "sc-light"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -14,15 +14,15 @@ readme = "README.md"
|
|||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
hash-db = "0.15.2"
|
hash-db = "0.15.2"
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-externalities = { version = "0.8.0", path = "../../primitives/externalities" }
|
sp-externalities = { version = "0.9.0", path = "../../primitives/externalities" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
|
sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sp-api = { version = "2.0.0", path = "../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../primitives/api" }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||||
sc-executor = { version = "0.8.0", path = "../executor" }
|
sc-executor = { version = "0.9.0", path = "../executor" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
description = "Gossiping for the Substrate network protocol"
|
description = "Gossiping for the Substrate network protocol"
|
||||||
name = "sc-network-gossip"
|
name = "sc-network-gossip"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -20,9 +20,9 @@ futures-timer = "3.0.1"
|
|||||||
libp2p = { version = "0.34.0", default-features = false }
|
libp2p = { version = "0.34.0", default-features = false }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
lru = "0.6.1"
|
lru = "0.6.1"
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0", path = "../../utils/prometheus" }
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.9.0", path = "../../utils/prometheus" }
|
||||||
sc-network = { version = "0.8.0", path = "../network" }
|
sc-network = { version = "0.9.0", path = "../network" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
wasm-timer = "0.2"
|
wasm-timer = "0.2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
description = "Substrate network protocol"
|
description = "Substrate network protocol"
|
||||||
name = "sc-network"
|
name = "sc-network"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -28,7 +28,7 @@ derive_more = "0.99.2"
|
|||||||
either = "1.5.3"
|
either = "1.5.3"
|
||||||
erased-serde = "0.3.9"
|
erased-serde = "0.3.9"
|
||||||
fnv = "1.0.6"
|
fnv = "1.0.6"
|
||||||
fork-tree = { version = "2.0.0", path = "../../utils/fork-tree" }
|
fork-tree = { version = "3.0.0", path = "../../utils/fork-tree" }
|
||||||
futures = "0.3.9"
|
futures = "0.3.9"
|
||||||
futures-timer = "3.0.2"
|
futures-timer = "3.0.2"
|
||||||
asynchronous-codec = "0.5"
|
asynchronous-codec = "0.5"
|
||||||
@@ -41,21 +41,21 @@ log = "0.4.8"
|
|||||||
nohash-hasher = "0.2.0"
|
nohash-hasher = "0.2.0"
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
pin-project = "1.0.4"
|
pin-project = "1.0.4"
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.8.0", path = "../../utils/prometheus" }
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", version = "0.9.0", path = "../../utils/prometheus" }
|
||||||
prost = "0.7"
|
prost = "0.7"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
sc-block-builder = { version = "0.8.0", path = "../block-builder" }
|
sc-block-builder = { version = "0.9.0", path = "../block-builder" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sc-peerset = { version = "2.0.0", path = "../peerset" }
|
sc-peerset = { version = "3.0.0", path = "../peerset" }
|
||||||
serde = { version = "1.0.101", features = ["derive"] }
|
serde = { version = "1.0.101", features = ["derive"] }
|
||||||
serde_json = "1.0.41"
|
serde_json = "1.0.41"
|
||||||
smallvec = "1.5.0"
|
smallvec = "1.5.0"
|
||||||
sp-arithmetic = { version = "2.0.0", path = "../../primitives/arithmetic" }
|
sp-arithmetic = { version = "3.0.0", path = "../../primitives/arithmetic" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
|
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
|
||||||
thiserror = "1"
|
thiserror = "1"
|
||||||
unsigned-varint = { version = "0.6.0", features = ["futures", "asynchronous_codec"] }
|
unsigned-varint = { version = "0.6.0", features = ["futures", "asynchronous_codec"] }
|
||||||
void = "1.0.2"
|
void = "1.0.2"
|
||||||
@@ -76,9 +76,9 @@ assert_matches = "1.3"
|
|||||||
libp2p = { version = "0.34.0", default-features = false }
|
libp2p = { version = "0.34.0", default-features = false }
|
||||||
quickcheck = "1.0.3"
|
quickcheck = "1.0.3"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
|
sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" }
|
||||||
sp-test-primitives = { version = "2.0.0", path = "../../primitives/test-primitives" }
|
sp-test-primitives = { version = "2.0.0", path = "../../primitives/test-primitives" }
|
||||||
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
|
||||||
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" }
|
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" }
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
|
|||||||
@@ -14,23 +14,23 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
async-std = "1.6.5"
|
async-std = "1.6.5"
|
||||||
sc-network = { version = "0.8.0", path = "../" }
|
sc-network = { version = "0.9.0", path = "../" }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
futures = "0.3.9"
|
futures = "0.3.9"
|
||||||
futures-timer = "3.0.1"
|
futures-timer = "3.0.1"
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
libp2p = { version = "0.34.0", default-features = false }
|
libp2p = { version = "0.34.0", default-features = false }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
||||||
sc-consensus = { version = "0.8.0", path = "../../consensus/common" }
|
sc-consensus = { version = "0.9.0", path = "../../consensus/common" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../../api" }
|
sc-client-api = { version = "3.0.0", path = "../../api" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sc-block-builder = { version = "0.8.0", path = "../../block-builder" }
|
sc-block-builder = { version = "0.9.0", path = "../../block-builder" }
|
||||||
sp-consensus-babe = { version = "0.8.0", path = "../../../primitives/consensus/babe" }
|
sp-consensus-babe = { version = "0.9.0", path = "../../../primitives/consensus/babe" }
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||||
substrate-test-runtime = { version = "2.0.0", path = "../../../test-utils/runtime" }
|
substrate-test-runtime = { version = "2.0.0", path = "../../../test-utils/runtime" }
|
||||||
tempfile = "3.1.0"
|
tempfile = "3.1.0"
|
||||||
sp-tracing = { version = "2.0.0", path = "../../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../../primitives/tracing" }
|
||||||
sc-service = { version = "0.8.0", default-features = false, features = ["test-helpers"], path = "../../service" }
|
sc-service = { version = "0.9.0", default-features = false, features = ["test-helpers"], path = "../../service" }
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
description = "Substrate offchain workers"
|
description = "Substrate offchain workers"
|
||||||
name = "sc-offchain"
|
name = "sc-offchain"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -14,35 +14,35 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bytes = "0.5"
|
bytes = "0.5"
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sp-api = { version = "2.0.0", path = "../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../primitives/api" }
|
||||||
fnv = "1.0.6"
|
fnv = "1.0.6"
|
||||||
futures = "0.3.9"
|
futures = "0.3.9"
|
||||||
futures-timer = "3.0.1"
|
futures-timer = "3.0.1"
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
threadpool = "1.7"
|
threadpool = "1.7"
|
||||||
num_cpus = "1.10"
|
num_cpus = "1.10"
|
||||||
sp-offchain = { version = "2.0.0", path = "../../primitives/offchain" }
|
sp-offchain = { version = "3.0.0", path = "../../primitives/offchain" }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
rand = "0.7.2"
|
rand = "0.7.2"
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
|
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
|
||||||
sc-network = { version = "0.8.0", path = "../network" }
|
sc-network = { version = "0.9.0", path = "../network" }
|
||||||
sc-keystore = { version = "2.0.0", path = "../keystore" }
|
sc-keystore = { version = "3.0.0", path = "../keystore" }
|
||||||
|
|
||||||
[target.'cfg(not(target_os = "unknown"))'.dependencies]
|
[target.'cfg(not(target_os = "unknown"))'.dependencies]
|
||||||
hyper = "0.13.9"
|
hyper = "0.13.9"
|
||||||
hyper-rustls = "0.21.0"
|
hyper-rustls = "0.21.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sc-client-db = { version = "0.8.0", default-features = true, path = "../db" }
|
sc-client-db = { version = "0.9.0", default-features = true, path = "../db" }
|
||||||
sc-block-builder = { version = "0.8.0", path = "../block-builder" }
|
sc-block-builder = { version = "0.9.0", path = "../block-builder" }
|
||||||
sc-transaction-pool = { version = "2.0.0", path = "../transaction-pool" }
|
sc-transaction-pool = { version = "3.0.0", path = "../transaction-pool" }
|
||||||
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
|
||||||
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
|
||||||
sp-consensus = { version = "0.8.1", path = "../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" }
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||||
tokio = "0.2"
|
tokio = "0.2"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ description = "Connectivity manager based on reputation"
|
|||||||
homepage = "http://parity.io"
|
homepage = "http://parity.io"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
name = "sc-peerset"
|
name = "sc-peerset"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
repository = "https://github.com/paritytech/substrate/"
|
repository = "https://github.com/paritytech/substrate/"
|
||||||
@@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
futures = "0.3.9"
|
futures = "0.3.9"
|
||||||
libp2p = { version = "0.34.0", default-features = false }
|
libp2p = { version = "0.34.0", default-features = false }
|
||||||
sp-utils = { version = "2.0.0", path = "../../primitives/utils"}
|
sp-utils = { version = "3.0.0", path = "../../primitives/utils"}
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
serde_json = "1.0.41"
|
serde_json = "1.0.41"
|
||||||
wasm-timer = "0.2"
|
wasm-timer = "0.2"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-proposer-metrics"
|
name = "sc-proposer-metrics"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -14,4 +14,4 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-rpc-api"
|
name = "sc-rpc-api"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -22,11 +22,11 @@ jsonrpc-derive = "15.1.0"
|
|||||||
jsonrpc-pubsub = "15.1.0"
|
jsonrpc-pubsub = "15.1.0"
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-version = { version = "2.0.0", path = "../../primitives/version" }
|
sp-version = { version = "3.0.0", path = "../../primitives/version" }
|
||||||
sp-runtime = { path = "../../primitives/runtime" , version = "2.0.0"}
|
sp-runtime = { path = "../../primitives/runtime" , version = "3.0.0"}
|
||||||
sp-chain-spec = { path = "../../primitives/chain-spec" , version = "2.0.0"}
|
sp-chain-spec = { path = "../../primitives/chain-spec" , version = "3.0.0"}
|
||||||
serde = { version = "1.0.101", features = ["derive"] }
|
serde = { version = "1.0.101", features = ["derive"] }
|
||||||
serde_json = "1.0.41"
|
serde_json = "1.0.41"
|
||||||
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
|
||||||
sp-rpc = { version = "2.0.0", path = "../../primitives/rpc" }
|
sp-rpc = { version = "3.0.0", path = "../../primitives/rpc" }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-rpc-server"
|
name = "sc-rpc-server"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -17,10 +17,10 @@ futures = "0.1.6"
|
|||||||
jsonrpc-core = "15.1.0"
|
jsonrpc-core = "15.1.0"
|
||||||
pubsub = { package = "jsonrpc-pubsub", version = "15.1.0" }
|
pubsub = { package = "jsonrpc-pubsub", version = "15.1.0" }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"}
|
||||||
serde = "1.0.101"
|
serde = "1.0.101"
|
||||||
serde_json = "1.0.41"
|
serde_json = "1.0.41"
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
|
|
||||||
[target.'cfg(not(target_os = "unknown"))'.dependencies]
|
[target.'cfg(not(target_os = "unknown"))'.dependencies]
|
||||||
http = { package = "jsonrpc-http-server", version = "15.1.0" }
|
http = { package = "jsonrpc-http-server", version = "15.1.0" }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-rpc"
|
name = "sc-rpc"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -13,31 +13,31 @@ readme = "README.md"
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sc-rpc-api = { version = "0.8.0", path = "../rpc-api" }
|
sc-rpc-api = { version = "0.9.0", path = "../rpc-api" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sp-api = { version = "2.0.0", path = "../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../primitives/api" }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||||
futures = { version = "0.3.1", features = ["compat"] }
|
futures = { version = "0.3.1", features = ["compat"] }
|
||||||
jsonrpc-pubsub = "15.1.0"
|
jsonrpc-pubsub = "15.1.0"
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
rpc = { package = "jsonrpc-core", version = "15.1.0" }
|
rpc = { package = "jsonrpc-core", version = "15.1.0" }
|
||||||
sp-version = { version = "2.0.0", path = "../../primitives/version" }
|
sp-version = { version = "3.0.0", path = "../../primitives/version" }
|
||||||
serde_json = "1.0.41"
|
serde_json = "1.0.41"
|
||||||
sp-session = { version = "2.0.0", path = "../../primitives/session" }
|
sp-session = { version = "3.0.0", path = "../../primitives/session" }
|
||||||
sp-offchain = { version = "2.0.0", path = "../../primitives/offchain" }
|
sp-offchain = { version = "3.0.0", path = "../../primitives/offchain" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
|
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
|
||||||
sp-rpc = { version = "2.0.0", path = "../../primitives/rpc" }
|
sp-rpc = { version = "3.0.0", path = "../../primitives/rpc" }
|
||||||
sp-keystore = { version = "0.8.0", path = "../../primitives/keystore" }
|
sp-keystore = { version = "0.9.0", path = "../../primitives/keystore" }
|
||||||
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
|
sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" }
|
||||||
sp-chain-spec = { version = "2.0.0", path = "../../primitives/chain-spec" }
|
sp-chain-spec = { version = "3.0.0", path = "../../primitives/chain-spec" }
|
||||||
sc-executor = { version = "0.8.0", path = "../executor" }
|
sc-executor = { version = "0.9.0", path = "../executor" }
|
||||||
sc-block-builder = { version = "0.8.0", path = "../block-builder" }
|
sc-block-builder = { version = "0.9.0", path = "../block-builder" }
|
||||||
sc-keystore = { version = "2.0.0", path = "../keystore" }
|
sc-keystore = { version = "3.0.0", path = "../keystore" }
|
||||||
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sc-tracing = { version = "2.0.0", path = "../tracing" }
|
sc-tracing = { version = "3.0.0", path = "../tracing" }
|
||||||
hash-db = { version = "0.15.2", default-features = false }
|
hash-db = { version = "0.15.2", default-features = false }
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
lazy_static = { version = "1.4.0", optional = true }
|
lazy_static = { version = "1.4.0", optional = true }
|
||||||
@@ -46,12 +46,12 @@ lazy_static = { version = "1.4.0", optional = true }
|
|||||||
assert_matches = "1.3.0"
|
assert_matches = "1.3.0"
|
||||||
futures01 = { package = "futures", version = "0.1.29" }
|
futures01 = { package = "futures", version = "0.1.29" }
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
sc-network = { version = "0.8.0", path = "../network" }
|
sc-network = { version = "0.9.0", path = "../network" }
|
||||||
sp-io = { version = "2.0.0", path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../primitives/io" }
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||||
tokio = "0.1.22"
|
tokio = "0.1.22"
|
||||||
sc-transaction-pool = { version = "2.0.0", path = "../transaction-pool" }
|
sc-transaction-pool = { version = "3.0.0", path = "../transaction-pool" }
|
||||||
sc-cli = { version = "0.8.0", path = "../cli" }
|
sc-cli = { version = "0.9.0", path = "../cli" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
test-helpers = ["lazy_static"]
|
test-helpers = ["lazy_static"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-service"
|
name = "sc-service"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -40,41 +40,41 @@ pin-project = "1.0.4"
|
|||||||
hash-db = "0.15.2"
|
hash-db = "0.15.2"
|
||||||
serde = "1.0.101"
|
serde = "1.0.101"
|
||||||
serde_json = "1.0.41"
|
serde_json = "1.0.41"
|
||||||
sc-keystore = { version = "2.0.0", path = "../keystore" }
|
sc-keystore = { version = "3.0.0", path = "../keystore" }
|
||||||
sp-io = { version = "2.0.0", path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-trie = { version = "2.0.0", path = "../../primitives/trie" }
|
sp-trie = { version = "3.0.0", path = "../../primitives/trie" }
|
||||||
sp-externalities = { version = "0.8.0", path = "../../primitives/externalities" }
|
sp-externalities = { version = "0.9.0", path = "../../primitives/externalities" }
|
||||||
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
|
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
|
||||||
sp-version = { version = "2.0.0", path = "../../primitives/version" }
|
sp-version = { version = "3.0.0", path = "../../primitives/version" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-keystore = { version = "0.8.0", path = "../../primitives/keystore" }
|
sp-keystore = { version = "0.9.0", path = "../../primitives/keystore" }
|
||||||
sp-session = { version = "2.0.0", path = "../../primitives/session" }
|
sp-session = { version = "3.0.0", path = "../../primitives/session" }
|
||||||
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
|
sp-state-machine = { version = "0.9.0", path = "../../primitives/state-machine" }
|
||||||
sp-application-crypto = { version = "2.0.0", path = "../../primitives/application-crypto" }
|
sp-application-crypto = { version = "3.0.0", path = "../../primitives/application-crypto" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" }
|
||||||
sp-inherents = { version = "2.0.0", path = "../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", path = "../../primitives/inherents" }
|
||||||
sc-network = { version = "0.8.0", path = "../network" }
|
sc-network = { version = "0.9.0", path = "../network" }
|
||||||
sc-chain-spec = { version = "2.0.0", path = "../chain-spec" }
|
sc-chain-spec = { version = "3.0.0", path = "../chain-spec" }
|
||||||
sc-light = { version = "2.0.0", path = "../light" }
|
sc-light = { version = "3.0.0", path = "../light" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sp-api = { version = "2.0.0", path = "../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../primitives/api" }
|
||||||
sc-client-db = { version = "0.8.0", default-features = false, path = "../db" }
|
sc-client-db = { version = "0.9.0", default-features = false, path = "../db" }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
||||||
sc-executor = { version = "0.8.0", path = "../executor" }
|
sc-executor = { version = "0.9.0", path = "../executor" }
|
||||||
sc-transaction-pool = { version = "2.0.0", path = "../transaction-pool" }
|
sc-transaction-pool = { version = "3.0.0", path = "../transaction-pool" }
|
||||||
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
|
||||||
sc-rpc-server = { version = "2.0.0", path = "../rpc-servers" }
|
sc-rpc-server = { version = "3.0.0", path = "../rpc-servers" }
|
||||||
sc-rpc = { version = "2.0.0", path = "../rpc" }
|
sc-rpc = { version = "3.0.0", path = "../rpc" }
|
||||||
sc-block-builder = { version = "0.8.0", path = "../block-builder" }
|
sc-block-builder = { version = "0.9.0", path = "../block-builder" }
|
||||||
sp-block-builder = { version = "2.0.0", path = "../../primitives/block-builder" }
|
sp-block-builder = { version = "3.0.0", path = "../../primitives/block-builder" }
|
||||||
sc-informant = { version = "0.8.0", path = "../informant" }
|
sc-informant = { version = "0.9.0", path = "../informant" }
|
||||||
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
|
sc-telemetry = { version = "3.0.0", path = "../telemetry" }
|
||||||
sc-offchain = { version = "2.0.0", path = "../offchain" }
|
sc-offchain = { version = "3.0.0", path = "../offchain" }
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"}
|
||||||
sc-tracing = { version = "2.0.0", path = "../tracing" }
|
sc-tracing = { version = "3.0.0", path = "../tracing" }
|
||||||
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
|
||||||
tracing = "0.1.22"
|
tracing = "0.1.22"
|
||||||
tracing-futures = { version = "0.2.4" }
|
tracing-futures = { version = "0.2.4" }
|
||||||
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
|
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
|
||||||
@@ -86,9 +86,9 @@ directories = "3.0.1"
|
|||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||||
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime/" }
|
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime/" }
|
||||||
sp-consensus-babe = { version = "0.8.0", path = "../../primitives/consensus/babe" }
|
sp-consensus-babe = { version = "0.9.0", path = "../../primitives/consensus/babe" }
|
||||||
grandpa = { version = "0.8.0", package = "sc-finality-grandpa", path = "../finality-grandpa" }
|
grandpa = { version = "0.9.0", package = "sc-finality-grandpa", path = "../finality-grandpa" }
|
||||||
grandpa-primitives = { version = "2.0.0", package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" }
|
grandpa-primitives = { version = "3.0.0", package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" }
|
||||||
tokio = { version = "0.2.25", default-features = false }
|
tokio = { version = "0.2.25", default-features = false }
|
||||||
async-std = { version = "1.6.5", default-features = false }
|
async-std = { version = "1.6.5", default-features = false }
|
||||||
tracing-subscriber = "0.2.15"
|
tracing-subscriber = "0.2.15"
|
||||||
|
|||||||
@@ -19,26 +19,26 @@ futures01 = { package = "futures", version = "0.1.29" }
|
|||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
fdlimit = "0.2.1"
|
fdlimit = "0.2.1"
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
sc-light = { version = "2.0.0", path = "../../light" }
|
sc-light = { version = "3.0.0", path = "../../light" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
|
||||||
sp-state-machine = { version = "0.8.0", path = "../../../primitives/state-machine" }
|
sp-state-machine = { version = "0.9.0", path = "../../../primitives/state-machine" }
|
||||||
sp-externalities = { version = "0.8.0", path = "../../../primitives/externalities" }
|
sp-externalities = { version = "0.9.0", path = "../../../primitives/externalities" }
|
||||||
sp-trie = { version = "2.0.0", path = "../../../primitives/trie" }
|
sp-trie = { version = "3.0.0", path = "../../../primitives/trie" }
|
||||||
sp-storage = { version = "2.0.0", path = "../../../primitives/storage" }
|
sp-storage = { version = "3.0.0", path = "../../../primitives/storage" }
|
||||||
sc-client-db = { version = "0.8.0", default-features = false, path = "../../db" }
|
sc-client-db = { version = "0.9.0", default-features = false, path = "../../db" }
|
||||||
futures = { version = "0.3.1", features = ["compat"] }
|
futures = { version = "0.3.1", features = ["compat"] }
|
||||||
sc-service = { version = "0.8.0", default-features = false, features = ["test-helpers"], path = "../../service" }
|
sc-service = { version = "0.9.0", default-features = false, features = ["test-helpers"], path = "../../service" }
|
||||||
sc-network = { version = "0.8.0", path = "../../network" }
|
sc-network = { version = "0.9.0", path = "../../network" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../../primitives/consensus/common" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" }
|
||||||
substrate-test-runtime = { version = "2.0.0", path = "../../../test-utils/runtime" }
|
substrate-test-runtime = { version = "2.0.0", path = "../../../test-utils/runtime" }
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../../api" }
|
sc-client-api = { version = "3.0.0", path = "../../api" }
|
||||||
sc-block-builder = { version = "0.8.0", path = "../../block-builder" }
|
sc-block-builder = { version = "0.9.0", path = "../../block-builder" }
|
||||||
sc-executor = { version = "0.8.0", path = "../../executor" }
|
sc-executor = { version = "0.9.0", path = "../../executor" }
|
||||||
sp-panic-handler = { version = "2.0.0", path = "../../../primitives/panic-handler" }
|
sp-panic-handler = { version = "3.0.0", path = "../../../primitives/panic-handler" }
|
||||||
parity-scale-codec = "2.0.0"
|
parity-scale-codec = "2.0.0"
|
||||||
sp-tracing = { version = "2.0.0", path = "../../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../../primitives/tracing" }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-state-db"
|
name = "sc-state-db"
|
||||||
version = "0.8.1"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -16,8 +16,8 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
thiserror = "1.0.21"
|
thiserror = "1.0.21"
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
log = "0.4.11"
|
log = "0.4.11"
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
|
||||||
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
|
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
|
||||||
parity-util-mem-derive = "0.1.0"
|
parity-util-mem-derive = "0.1.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-sync-state-rpc"
|
name = "sc-sync-state-rpc"
|
||||||
version = "0.8.0"
|
version = "0.9.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
description = "A RPC handler to create sync states for light clients."
|
description = "A RPC handler to create sync states for light clients."
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -17,12 +17,12 @@ thiserror = "1.0.21"
|
|||||||
jsonrpc-core = "15.0"
|
jsonrpc-core = "15.0"
|
||||||
jsonrpc-core-client = "15.0"
|
jsonrpc-core-client = "15.0"
|
||||||
jsonrpc-derive = "15.0"
|
jsonrpc-derive = "15.0"
|
||||||
sc-chain-spec = { version = "2.0.0", path = "../chain-spec" }
|
sc-chain-spec = { version = "3.0.0", path = "../chain-spec" }
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sc-consensus-babe = { version = "0.8.0", path = "../consensus/babe" }
|
sc-consensus-babe = { version = "0.9.0", path = "../consensus/babe" }
|
||||||
sc-consensus-epochs = { version = "0.8.0", path = "../consensus/epochs" }
|
sc-consensus-epochs = { version = "0.9.0", path = "../consensus/epochs" }
|
||||||
sc-finality-grandpa = { version = "0.8.0", path = "../finality-grandpa" }
|
sc-finality-grandpa = { version = "0.9.0", path = "../finality-grandpa" }
|
||||||
sc-rpc-api = { version = "0.8.0", path = "../rpc-api" }
|
sc-rpc-api = { version = "0.9.0", path = "../rpc-api" }
|
||||||
serde_json = "1.0.58"
|
serde_json = "1.0.58"
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-telemetry"
|
name = "sc-telemetry"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
description = "Telemetry utils"
|
description = "Telemetry utils"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -28,5 +28,5 @@ void = "1.0.2"
|
|||||||
tracing = "0.1.10"
|
tracing = "0.1.10"
|
||||||
tracing-subscriber = "0.2.13"
|
tracing-subscriber = "0.2.13"
|
||||||
serde_json = "1.0.41"
|
serde_json = "1.0.41"
|
||||||
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
|
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
|
||||||
chrono = "0.4.19"
|
chrono = "0.4.19"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-tracing"
|
name = "sc-tracing"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -29,9 +29,9 @@ tracing = "0.1.22"
|
|||||||
tracing-core = "0.1.17"
|
tracing-core = "0.1.17"
|
||||||
tracing-log = "0.1.1"
|
tracing-log = "0.1.1"
|
||||||
tracing-subscriber = "0.2.15"
|
tracing-subscriber = "0.2.15"
|
||||||
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
|
||||||
sc-telemetry = { version = "2.0.0", path = "../telemetry" }
|
sc-telemetry = { version = "3.0.0", path = "../telemetry" }
|
||||||
sc-tracing-proc-macro = { version = "2.0.0", path = "./proc-macro" }
|
sc-tracing-proc-macro = { version = "3.0.0", path = "./proc-macro" }
|
||||||
|
|
||||||
[target.'cfg(target_os = "unknown")'.dependencies]
|
[target.'cfg(target_os = "unknown")'.dependencies]
|
||||||
wasm-bindgen = "0.2.67"
|
wasm-bindgen = "0.2.67"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-tracing-proc-macro"
|
name = "sc-tracing-proc-macro"
|
||||||
version = "2.0.0"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-transaction-pool"
|
name = "sc-transaction-pool"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -21,23 +21,23 @@ intervalier = "0.4.0"
|
|||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
|
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.8.0"}
|
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../utils/prometheus", version = "0.9.0"}
|
||||||
sc-client-api = { version = "2.0.0", path = "../api" }
|
sc-client-api = { version = "3.0.0", path = "../api" }
|
||||||
sc-transaction-graph = { version = "2.0.0", path = "./graph" }
|
sc-transaction-graph = { version = "3.0.0", path = "./graph" }
|
||||||
sp-api = { version = "2.0.0", path = "../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../primitives/api" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime" }
|
||||||
sp-tracing = { version = "2.0.0", path = "../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
|
||||||
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", path = "../../primitives/transaction-pool" }
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../primitives/blockchain" }
|
||||||
sp-utils = { version = "2.0.0", path = "../../primitives/utils" }
|
sp-utils = { version = "3.0.0", path = "../../primitives/utils" }
|
||||||
wasm-timer = "0.2"
|
wasm-timer = "0.2"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assert_matches = "1.3.0"
|
assert_matches = "1.3.0"
|
||||||
hex = "0.4"
|
hex = "0.4"
|
||||||
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
|
sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" }
|
||||||
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" }
|
sp-consensus = { version = "0.9.0", path = "../../primitives/consensus/common" }
|
||||||
substrate-test-runtime-transaction-pool = { version = "2.0.0", path = "../../test-utils/runtime/transaction-pool" }
|
substrate-test-runtime-transaction-pool = { version = "2.0.0", path = "../../test-utils/runtime/transaction-pool" }
|
||||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
|
||||||
sc-block-builder = { version = "0.8.0", path = "../block-builder" }
|
sc-block-builder = { version = "0.9.0", path = "../block-builder" }
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "sc-transaction-graph"
|
name = "sc-transaction-graph"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
||||||
@@ -20,11 +20,11 @@ log = "0.4.8"
|
|||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
serde = { version = "1.0.101", features = ["derive"] }
|
serde = { version = "1.0.101", features = ["derive"] }
|
||||||
wasm-timer = "0.2"
|
wasm-timer = "0.2"
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
sp-utils = { version = "2.0.0", path = "../../../primitives/utils" }
|
sp-utils = { version = "3.0.0", path = "../../../primitives/utils" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" }
|
sp-transaction-pool = { version = "3.0.0", path = "../../../primitives/transaction-pool" }
|
||||||
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
|
parity-util-mem = { version = "0.9.0", default-features = false, features = ["primitive-types"] }
|
||||||
linked-hash-map = "0.5.2"
|
linked-hash-map = "0.5.2"
|
||||||
retain_mut = "0.1.2"
|
retain_mut = "0.1.2"
|
||||||
|
|||||||
@@ -6,6 +6,147 @@ The format is based on [Keep a Changelog].
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
## 2.0.1-> 3.0.0 - Apollo 14
|
||||||
|
|
||||||
|
Most notably, this is the first release of the new FRAME (2.0) with its new macro-syntax and some changes in types, and pallet versioning. This release also incorporates the faster and improve version 2.0 of the parity-scale-codec and upgraded dependencies all-around. While the `FinalityTracker` pallet has been dropped, this release marks the first public appereance of a few new pallets, too;Bounties, Lottery, Tips (extracted from the `Treasury`-pallet, see #7536) and Merkle-Mountain-Ranges (MMR).
|
||||||
|
|
||||||
|
On the client side, the most notable changes are around the keystore, making it async and switching to a different signing model allowing for remote-signing to be implemented; and various changes to improve networking and light-client support, like adding the Grandpa warp sync request-response protocol (#7711).
|
||||||
|
|
||||||
|
_Contracts_: Please note that the contracts pallet _is not part_ of this release. The pallet is not yet ready and will be released separately in the coming weeks. The currently released contracts pallet _is not compatible_ with the new FRAME, thus if you need the contracts pallet, we recommend you wait with the upgrade until it has been released, too.
|
||||||
|
### Upgrade instructions
|
||||||
|
|
||||||
|
Not too much has changed on the top and API level for developing Substrate betweeen 2.0 and 3.0. The easiest and quickest path for upgading is just to take the latest node-template and try applying your changes to it:
|
||||||
|
1. take a diff between 2.0 and your changes
|
||||||
|
2. store that diff
|
||||||
|
3. remove everything, copy over the 3.0 node-template
|
||||||
|
4. try re-applying your diff, manually, a hunk at a time.
|
||||||
|
|
||||||
|
If that doesn't work for you, we are working on an in-depth-guide for all major changes that took place and how you need to adapt your code for it. [You can find the upgrade guide under `docs/` in the repo](https://github.com/paritytech/substrate/blob/master/docs/Upgrading-2.0-to-3.0.md), if you have further questions or problem, please [feel free to ask in the github discussion board](https://github.com/paritytech/substrate/discussions).
|
||||||
|
|
||||||
|
|
||||||
|
Runtime
|
||||||
|
-------
|
||||||
|
|
||||||
|
* contracts: Charge rent for code storage (#7935)
|
||||||
|
* contracts: Emit event on contract termination (#8014)
|
||||||
|
* Fix elections-phragmen and proxy issue (#7040)
|
||||||
|
* Allow validators to block and kick their nominator set. (#7930)
|
||||||
|
* Decouple Stkaing and Election - Part1: Support traits (#7908)
|
||||||
|
* Introduces account existence providers reference counting (#7363)
|
||||||
|
* contracts: Cap the surcharge reward by the amount of rent that way payed by a contract (#7870)
|
||||||
|
* Use checked math when calculating storage size (#7885)
|
||||||
|
* Fix clear prefix check to avoid erasing child trie roots. (#7848)
|
||||||
|
* contracts: Collect rent for the first block during deployment (#7847)
|
||||||
|
* contracts: Add configurable per-storage item cost (#7819)
|
||||||
|
* babe: expose next epoch data (#7829)
|
||||||
|
* fix : remove `_{ }` syntax from benchmark macro (#7822)
|
||||||
|
* Define ss58 prefix inside the runtime (#7810)
|
||||||
|
* Allow council to slash treasury tip (#7753)
|
||||||
|
* Don't allow self proxies (#7803)
|
||||||
|
* add a `current_epoch` to BabeApi (#7789)
|
||||||
|
* Add `pallet` attribute macro to declare pallets (#6877)
|
||||||
|
* Make it possible to calculate the storage root as often as you want (#7714)
|
||||||
|
* Issue 7143 | Refactor Treasury Pallet into Bounties, Tips, and Proposals (#7536)
|
||||||
|
* Participating in Council Governance is Free for First Time Voters and Successful Closing (#7661)
|
||||||
|
* Streamline frame_system weight parametrization (#6629)
|
||||||
|
* Features needed for reserve-backed stablecoins (#7152)
|
||||||
|
* `sudo_as` should return a result (#7620)
|
||||||
|
* More Extensible Multiaddress Format (#7380)
|
||||||
|
* Fix `on_runtime_upgrade` weight recording (#7480)
|
||||||
|
* Implement batch_all and update Utility pallet for weight refunds (#7188)
|
||||||
|
* Fix wrong outgoing calculation in election (#7384)
|
||||||
|
* Implements pallet versioning (#7208)
|
||||||
|
* Runtime worker threads (#7089)
|
||||||
|
* Allow `schedule_after(0, ...)` to work (#7284)
|
||||||
|
* Fix offchain election to respect the weight (#7215)
|
||||||
|
* Fix weight for inner call with new origin (#7196)
|
||||||
|
* Move proxies migration (#7205)
|
||||||
|
* Introduce `cancel_proposal` to rid us of those pesky proposals (#7111)
|
||||||
|
|
||||||
|
Client
|
||||||
|
------
|
||||||
|
|
||||||
|
* Remove backwards-compatibility networking hack (#8068)
|
||||||
|
* Extend SS58 network identifiers (#8039)
|
||||||
|
* Update dependencies ahead of next release (#8015)
|
||||||
|
* Storage chains: serve transactions over IPFS/bitswap (#7963)
|
||||||
|
* Add a send_request function to NetworkService (#8008)
|
||||||
|
* Rename system_networkState to system_unstable_networkState (#8001)
|
||||||
|
* Allow transaction for offchain indexing (#7290)
|
||||||
|
* Grandpa warp sync request-response protocol (#7711)
|
||||||
|
* Add explicit limits to notifications sizes and adjust yamux buffer size (#7925)
|
||||||
|
* Rework priority groups, take 2 (#7700)
|
||||||
|
* Define ss58 prefix inside the runtime (#7810)
|
||||||
|
* Expand remote keystore interface to allow for hybrid mode (#7628)
|
||||||
|
* Allow capping the amount of work performed when deleting a child trie (#7671)
|
||||||
|
* RPC to allow setting the log filter (#7474)
|
||||||
|
* Remove sc_network::NetworkService::register_notifications_protocol and partially refactor Grandpa tests (#7646)
|
||||||
|
* minor fix and improvements on localkeystore (#7626)
|
||||||
|
* contracts: Add `salt` argument to contract instantiation (#7482)
|
||||||
|
* contracts: Rework contracts_call RPC (#7468)
|
||||||
|
* Make sure to use the optimized method instead of reading the storage. (#7445)
|
||||||
|
* WASM Local-blob override (#7317)
|
||||||
|
* client/network: Allow configuring Kademlia's disjoint query paths (#7356)
|
||||||
|
* client/network: Remove option to disable yamux flow control (#7358)
|
||||||
|
* Make `queryStorage` and `storagePairs` unsafe RPC functions (#7342)
|
||||||
|
* No longer actively open legacy substreams (#7076)
|
||||||
|
* Make `run_node_until_exit` take a future (#7318)
|
||||||
|
* Add an system_syncState RPC method (#7315)
|
||||||
|
* Async keystore + Authority-Discovery async/await (#7000)
|
||||||
|
* Fixes logging of target names with dashes (#7281)
|
||||||
|
* Refactor CurrencyToVote (#6896)
|
||||||
|
* client/network: Stop sending noise legacy handshake (#7211)
|
||||||
|
|
||||||
|
API
|
||||||
|
---
|
||||||
|
|
||||||
|
* pallet macro: easier syntax for `#[pallet::pallet]` with `struct Pallet<T>(_)` (#8091)
|
||||||
|
* WasmExecutor takes a cache directory (#8057)
|
||||||
|
* Remove PalletInfo impl for () (#8090)
|
||||||
|
* Migrate assets pallet to new macros (#7984)
|
||||||
|
* contracts: Make ChainExtension trait generic over the runtime (#8003)
|
||||||
|
* Decouple the session validators from im-online (#7127)
|
||||||
|
* Update parity-scale-codec to 2.0 (#7994)
|
||||||
|
* Merkle Mountain Range pallet improvements (#7891)
|
||||||
|
* Cleaner GRANDPA RPC API for proving finality (#7339)
|
||||||
|
* Migrate frame-system to pallet attribute macro (#7898)
|
||||||
|
* Introduces account existence providers reference counting (#7363)
|
||||||
|
* contracts: Lazy storage removal (#7740)
|
||||||
|
* contracts: Allow runtime authors to define a chain extension (#7548)
|
||||||
|
* Define ss58 prefix inside the runtime (#7810)
|
||||||
|
* Add `pallet` attribute macro to declare pallets (#6877)
|
||||||
|
* Add keccak-512 to host functions. (#7531)
|
||||||
|
* Merkle Mountain Range pallet (#7312)
|
||||||
|
* Allow capping the amount of work performed when deleting a child trie (#7671)
|
||||||
|
* add an upgrade_keys method for pallet-session (#7688)
|
||||||
|
* Streamline frame_system weight parametrization (#6629)
|
||||||
|
* Rename pallet trait `Trait` to `Config` (#7599)
|
||||||
|
* contracts: Add `salt` argument to contract instantiation (#7482)
|
||||||
|
* pallet-evm: move to Frontier (Part IV) (#7573)
|
||||||
|
* refactor subtrait/elevated trait as not needed (#7497)
|
||||||
|
* Allow BabeConsensusDataProvider fork existing chain (#7078)
|
||||||
|
* decouple transaction payment and currency (#6912)
|
||||||
|
* contracts: Refactor the runtime API in order to simplify node integration (#7409)
|
||||||
|
* client/authority-discovery: Remove sentry node logic (#7368)
|
||||||
|
* client/network: Make NetworkService::set_priority_group async (#7352)
|
||||||
|
* *: Bump async-std to v1.6.5 (#7306)
|
||||||
|
* babe: make secondary slot randomness available on-chain (#7053)
|
||||||
|
* allow where clause in decl_error (#7324)
|
||||||
|
* reschedule (#6860)
|
||||||
|
* SystemOrigin trait (#7226)
|
||||||
|
* permit setting treasury pallet initial funding through genesis (#7214)
|
||||||
|
|
||||||
|
Runtime Migrations
|
||||||
|
------------------
|
||||||
|
|
||||||
|
* Migrate assets pallet to new macros (#7984)
|
||||||
|
* Fix elections-phragmen and proxy issue (#7040)
|
||||||
|
* Allow validators to block and kick their nominator set. (#7930)
|
||||||
|
* Migrate frame-system to pallet attribute macro (#7898)
|
||||||
|
* Implements pallet versioning (#7208)
|
||||||
|
* Move proxies migration (#7205)
|
||||||
|
|
||||||
|
|
||||||
## 2.0.0-> 2.0.1
|
## 2.0.0-> 2.0.1
|
||||||
|
|
||||||
Patch release with backports to fix broken nightly builds.
|
Patch release with backports to fix broken nightly builds.
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-assets"
|
name = "pallet-assets"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -15,20 +15,20 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
# Needed for various traits. In our case, `OnFinalize`.
|
# Needed for various traits. In our case, `OnFinalize`.
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
# Needed for type-safe access to storage DB.
|
# Needed for type-safe access to storage DB.
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
# `system` module provides us with all sorts of useful stuff and macros depend on it being around.
|
# `system` module provides us with all sorts of useful stuff and macros depend on it being around.
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-std = { version = "2.0.0", path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", path = "../../primitives/std" }
|
||||||
sp-io = { version = "2.0.0", path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../primitives/io" }
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-atomic-swap"
|
name = "pallet-atomic-swap"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -15,15 +15,15 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-aura"
|
name = "pallet-aura"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -13,21 +13,21 @@ readme = "README.md"
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
pallet-session = { version = "2.0.0", default-features = false, path = "../session" }
|
pallet-session = { version = "3.0.0", default-features = false, path = "../session" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
sp-consensus-aura = { version = "0.8.0", path = "../../primitives/consensus/aura", default-features = false }
|
sp-consensus-aura = { version = "0.9.0", path = "../../primitives/consensus/aura", default-features = false }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
sp-timestamp = { version = "2.0.0", default-features = false, path = "../../primitives/timestamp" }
|
sp-timestamp = { version = "3.0.0", default-features = false, path = "../../primitives/timestamp" }
|
||||||
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../timestamp" }
|
pallet-timestamp = { version = "3.0.0", default-features = false, path = "../timestamp" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
sp-io ={ version = "2.0.0", path = "../../primitives/io" }
|
sp-io ={ version = "3.0.0", path = "../../primitives/io" }
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
parking_lot = "0.11.1"
|
parking_lot = "0.11.1"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-authority-discovery"
|
name = "pallet-authority-discovery"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -13,20 +13,20 @@ readme = "README.md"
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sp-authority-discovery = { version = "2.0.0", default-features = false, path = "../../primitives/authority-discovery" }
|
sp-authority-discovery = { version = "3.0.0", default-features = false, path = "../../primitives/authority-discovery" }
|
||||||
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
pallet-session = { version = "2.0.0", features = ["historical" ], path = "../session", default-features = false }
|
pallet-session = { version = "3.0.0", features = ["historical" ], path = "../session", default-features = false }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-io = { version = "2.0.0", path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../primitives/io" }
|
||||||
sp-staking = { version = "2.0.0", default-features = false, path = "../../primitives/staking" }
|
sp-staking = { version = "3.0.0", default-features = false, path = "../../primitives/staking" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-authorship"
|
name = "pallet-authorship"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
description = "Block and Uncle Author tracking for the FRAME"
|
description = "Block and Uncle Author tracking for the FRAME"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
@@ -14,17 +14,17 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-inherents = { version = "2.0.0", default-features = false, path = "../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", default-features = false, path = "../../primitives/inherents" }
|
||||||
sp-authorship = { version = "2.0.0", default-features = false, path = "../../primitives/authorship" }
|
sp-authorship = { version = "3.0.0", default-features = false, path = "../../primitives/authorship" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
impl-trait-for-tuples = "0.2.1"
|
impl-trait-for-tuples = "0.2.1"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-io ={ version = "2.0.0", path = "../../primitives/io" }
|
sp-io ={ version = "3.0.0", path = "../../primitives/io" }
|
||||||
serde = { version = "1.0.101" }
|
serde = { version = "1.0.101" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-babe"
|
name = "pallet-babe"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -14,31 +14,31 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
pallet-authorship = { version = "2.0.0", default-features = false, path = "../authorship" }
|
pallet-authorship = { version = "3.0.0", default-features = false, path = "../authorship" }
|
||||||
pallet-session = { version = "2.0.0", default-features = false, path = "../session" }
|
pallet-session = { version = "3.0.0", default-features = false, path = "../session" }
|
||||||
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../timestamp" }
|
pallet-timestamp = { version = "3.0.0", default-features = false, path = "../timestamp" }
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||||
sp-consensus-babe = { version = "0.8.0", default-features = false, path = "../../primitives/consensus/babe" }
|
sp-consensus-babe = { version = "0.9.0", default-features = false, path = "../../primitives/consensus/babe" }
|
||||||
sp-consensus-vrf = { version = "0.8.0", default-features = false, path = "../../primitives/consensus/vrf" }
|
sp-consensus-vrf = { version = "0.9.0", default-features = false, path = "../../primitives/consensus/vrf" }
|
||||||
sp-inherents = { version = "2.0.0", default-features = false, path = "../../primitives/inherents" }
|
sp-inherents = { version = "3.0.0", default-features = false, path = "../../primitives/inherents" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-session = { version = "2.0.0", default-features = false, path = "../../primitives/session" }
|
sp-session = { version = "3.0.0", default-features = false, path = "../../primitives/session" }
|
||||||
sp-staking = { version = "2.0.0", default-features = false, path = "../../primitives/staking" }
|
sp-staking = { version = "3.0.0", default-features = false, path = "../../primitives/staking" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-timestamp = { version = "2.0.0", default-features = false, path = "../../primitives/timestamp" }
|
sp-timestamp = { version = "3.0.0", default-features = false, path = "../../primitives/timestamp" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
frame-benchmarking = { version = "2.0.0", path = "../benchmarking" }
|
frame-benchmarking = { version = "3.0.0", path = "../benchmarking" }
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
pallet-offences = { version = "2.0.0", path = "../offences" }
|
pallet-offences = { version = "3.0.0", path = "../offences" }
|
||||||
pallet-staking = { version = "2.0.0", path = "../staking" }
|
pallet-staking = { version = "3.0.0", path = "../staking" }
|
||||||
pallet-staking-reward-curve = { version = "2.0.0", path = "../staking/reward-curve" }
|
pallet-staking-reward-curve = { version = "3.0.0", path = "../staking/reward-curve" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-balances"
|
name = "pallet-balances"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -15,16 +15,16 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-io = { version = "2.0.0", path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../primitives/io" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
pallet-transaction-payment = { version = "2.0.0", path = "../transaction-payment" }
|
pallet-transaction-payment = { version = "3.0.0", path = "../transaction-payment" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "frame-benchmarking"
|
name = "frame-benchmarking"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -16,14 +16,14 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
linregress = { version = "0.4.0", optional = true }
|
linregress = { version = "0.4.0", optional = true }
|
||||||
paste = "1.0"
|
paste = "1.0"
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
||||||
sp-api = { version = "2.0.0", path = "../../primitives/api", default-features = false }
|
sp-api = { version = "3.0.0", path = "../../primitives/api", default-features = false }
|
||||||
sp-runtime-interface = { version = "2.0.0", path = "../../primitives/runtime-interface", default-features = false }
|
sp-runtime-interface = { version = "3.0.0", path = "../../primitives/runtime-interface", default-features = false }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime", default-features = false }
|
sp-runtime = { version = "3.0.0", path = "../../primitives/runtime", default-features = false }
|
||||||
sp-std = { version = "2.0.0", path = "../../primitives/std", default-features = false }
|
sp-std = { version = "3.0.0", path = "../../primitives/std", default-features = false }
|
||||||
sp-io = { version = "2.0.0", path = "../../primitives/io", default-features = false }
|
sp-io = { version = "3.0.0", path = "../../primitives/io", default-features = false }
|
||||||
sp-storage = { version = "2.0.0", path = "../../primitives/storage", default-features = false }
|
sp-storage = { version = "3.0.0", path = "../../primitives/storage", default-features = false }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
hex-literal = "0.3.1"
|
hex-literal = "0.3.1"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-bounties"
|
name = "pallet-bounties"
|
||||||
version = "2.0.0"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -15,19 +15,19 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
pallet-treasury = { version = "2.0.0", default-features = false, path = "../treasury" }
|
pallet-treasury = { version = "3.0.0", default-features = false, path = "../treasury" }
|
||||||
|
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-io ={ version = "2.0.0", path = "../../primitives/io" }
|
sp-io ={ version = "3.0.0", path = "../../primitives/io" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-storage = { version = "2.0.0", path = "../../primitives/storage" }
|
sp-storage = { version = "3.0.0", path = "../../primitives/storage" }
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-collective"
|
name = "pallet-collective"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -15,17 +15,17 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
hex-literal = "0.3.1"
|
hex-literal = "0.3.1"
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -17,19 +17,19 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
pallet-contracts-primitives = { version = "2.0.0", default-features = false, path = "common" }
|
pallet-contracts-primitives = { version = "2.0.0", default-features = false, path = "common" }
|
||||||
pallet-contracts-proc-macro = { version = "0.1.0", path = "proc-macro" }
|
pallet-contracts-proc-macro = { version = "0.1.0", path = "proc-macro" }
|
||||||
parity-wasm = { version = "0.41.0", default-features = false }
|
parity-wasm = { version = "0.41.0", default-features = false }
|
||||||
pwasm-utils = { version = "0.16", default-features = false }
|
pwasm-utils = { version = "0.16", default-features = false }
|
||||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-sandbox = { version = "0.8.0", default-features = false, path = "../../primitives/sandbox" }
|
sp-sandbox = { version = "0.9.0", default-features = false, path = "../../primitives/sandbox" }
|
||||||
wasmi-validation = { version = "0.3.0", default-features = false }
|
wasmi-validation = { version = "0.3.0", default-features = false }
|
||||||
|
|
||||||
# Only used in benchmarking to generate random contract code
|
# Only used in benchmarking to generate random contract code
|
||||||
@@ -39,9 +39,9 @@ rand_pcg = { version = "0.2.1", optional = true }
|
|||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
assert_matches = "1.3.0"
|
assert_matches = "1.3.0"
|
||||||
hex-literal = "0.3.1"
|
hex-literal = "0.3.1"
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
pallet-timestamp = { version = "2.0.0", path = "../timestamp" }
|
pallet-timestamp = { version = "3.0.0", path = "../timestamp" }
|
||||||
pallet-randomness-collective-flip = { version = "2.0.0", path = "../randomness-collective-flip" }
|
pallet-randomness-collective-flip = { version = "3.0.0", path = "../randomness-collective-flip" }
|
||||||
paste = "1.0"
|
paste = "1.0"
|
||||||
pretty_assertions = "0.6.1"
|
pretty_assertions = "0.6.1"
|
||||||
wat = "1.0"
|
wat = "1.0"
|
||||||
|
|||||||
@@ -17,8 +17,8 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
# This crate should not rely on any of the frame primitives.
|
# This crate should not rely on any of the frame primitives.
|
||||||
bitflags = "1.0"
|
bitflags = "1.0"
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -18,12 +18,12 @@ codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|||||||
jsonrpc-core = "15.1.0"
|
jsonrpc-core = "15.1.0"
|
||||||
jsonrpc-core-client = "15.1.0"
|
jsonrpc-core-client = "15.1.0"
|
||||||
jsonrpc-derive = "15.1.0"
|
jsonrpc-derive = "15.1.0"
|
||||||
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
|
sp-blockchain = { version = "3.0.0", path = "../../../primitives/blockchain" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-rpc = { version = "2.0.0", path = "../../../primitives/rpc" }
|
sp-rpc = { version = "3.0.0", path = "../../../primitives/rpc" }
|
||||||
serde = { version = "1.0.101", features = ["derive"] }
|
serde = { version = "1.0.101", features = ["derive"] }
|
||||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", path = "../../../primitives/runtime" }
|
||||||
sp-api = { version = "2.0.0", path = "../../../primitives/api" }
|
sp-api = { version = "3.0.0", path = "../../../primitives/api" }
|
||||||
pallet-contracts-primitives = { version = "2.0.0", path = "../common" }
|
pallet-contracts-primitives = { version = "2.0.0", path = "../common" }
|
||||||
pallet-contracts-rpc-runtime-api = { version = "0.8.0", path = "./runtime-api" }
|
pallet-contracts-rpc-runtime-api = { version = "0.8.0", path = "./runtime-api" }
|
||||||
|
|
||||||
|
|||||||
@@ -14,10 +14,10 @@ publish = false
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sp-api = { version = "2.0.0", default-features = false, path = "../../../../primitives/api" }
|
sp-api = { version = "3.0.0", default-features = false, path = "../../../../primitives/api" }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../../../primitives/std" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../../../primitives/runtime" }
|
||||||
pallet-contracts-primitives = { version = "2.0.0", default-features = false, path = "../../common" }
|
pallet-contracts-primitives = { version = "2.0.0", default-features = false, path = "../../common" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-democracy"
|
name = "pallet-democracy"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -15,19 +15,19 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
pallet-scheduler = { version = "2.0.0", path = "../scheduler" }
|
pallet-scheduler = { version = "3.0.0", path = "../scheduler" }
|
||||||
sp-storage = { version = "2.0.0", path = "../../primitives/storage" }
|
sp-storage = { version = "3.0.0", path = "../../primitives/storage" }
|
||||||
substrate-test-utils = { version = "2.0.0", path = "../../test-utils" }
|
substrate-test-utils = { version = "3.0.0", path = "../../test-utils" }
|
||||||
hex-literal = "0.3.1"
|
hex-literal = "0.3.1"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|||||||
@@ -15,19 +15,19 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-npos-elections = { version = "2.0.0", default-features = false, path = "../../primitives/npos-elections" }
|
sp-npos-elections = { version = "3.0.0", default-features = false, path = "../../primitives/npos-elections" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-io = { version = "2.0.0", path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../primitives/io" }
|
||||||
hex-literal = "0.3.1"
|
hex-literal = "0.3.1"
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
substrate-test-utils = { version = "2.0.0", path = "../../test-utils" }
|
substrate-test-utils = { version = "3.0.0", path = "../../test-utils" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-elections"
|
name = "pallet-elections"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -15,16 +15,16 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
hex-literal = "0.3.1"
|
hex-literal = "0.3.1"
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -14,14 +14,14 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
sp-keystore = { version = "0.8.0", path = "../../primitives/keystore", optional = true }
|
sp-keystore = { version = "0.9.0", path = "../../primitives/keystore", optional = true }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
lite-json = { version = "0.1", default-features = false }
|
lite-json = { version = "0.1", default-features = false }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|||||||
@@ -13,13 +13,13 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-tasks = { version = "2.0.0", default-features = false, path = "../../primitives/tasks" }
|
sp-tasks = { version = "3.0.0", default-features = false, path = "../../primitives/tasks" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
serde = { version = "1.0.101" }
|
serde = { version = "1.0.101" }
|
||||||
|
|||||||
@@ -15,17 +15,17 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
pallet-balances = { version = "2.0.0", default-features = false, path = "../balances" }
|
pallet-balances = { version = "3.0.0", default-features = false, path = "../balances" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
|
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core", default-features = false }
|
sp-core = { version = "3.0.0", path = "../../primitives/core", default-features = false }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "frame-executive"
|
name = "frame-executive"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -14,23 +14,23 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-tracing = { version = "2.0.0", default-features = false, path = "../../primitives/tracing" }
|
sp-tracing = { version = "3.0.0", default-features = false, path = "../../primitives/tracing" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
hex-literal = "0.3.1"
|
hex-literal = "0.3.1"
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-io ={ version = "2.0.0", path = "../../primitives/io" }
|
sp-io ={ version = "3.0.0", path = "../../primitives/io" }
|
||||||
pallet-indices = { version = "2.0.0", path = "../indices" }
|
pallet-indices = { version = "3.0.0", path = "../indices" }
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
pallet-transaction-payment = { version = "2.0.0", path = "../transaction-payment" }
|
pallet-transaction-payment = { version = "3.0.0", path = "../transaction-payment" }
|
||||||
sp-version = { version = "2.0.0", path = "../../primitives/version" }
|
sp-version = { version = "3.0.0", path = "../../primitives/version" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-grandpa"
|
name = "pallet-grandpa"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -15,29 +15,29 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
sp-finality-grandpa = { version = "2.0.0", default-features = false, path = "../../primitives/finality-grandpa" }
|
sp-finality-grandpa = { version = "3.0.0", default-features = false, path = "../../primitives/finality-grandpa" }
|
||||||
sp-session = { version = "2.0.0", default-features = false, path = "../../primitives/session" }
|
sp-session = { version = "3.0.0", default-features = false, path = "../../primitives/session" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-staking = { version = "2.0.0", default-features = false, path = "../../primitives/staking" }
|
sp-staking = { version = "3.0.0", default-features = false, path = "../../primitives/staking" }
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
pallet-authorship = { version = "2.0.0", default-features = false, path = "../authorship" }
|
pallet-authorship = { version = "3.0.0", default-features = false, path = "../authorship" }
|
||||||
pallet-session = { version = "2.0.0", default-features = false, path = "../session" }
|
pallet-session = { version = "3.0.0", default-features = false, path = "../session" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
frame-benchmarking = { version = "2.0.0", path = "../benchmarking" }
|
frame-benchmarking = { version = "3.0.0", path = "../benchmarking" }
|
||||||
grandpa = { package = "finality-grandpa", version = "0.13.0", features = ["derive-codec"] }
|
grandpa = { package = "finality-grandpa", version = "0.13.0", features = ["derive-codec"] }
|
||||||
sp-io = { version = "2.0.0", path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../primitives/io" }
|
||||||
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" }
|
sp-keyring = { version = "3.0.0", path = "../../primitives/keyring" }
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
pallet-offences = { version = "2.0.0", path = "../offences" }
|
pallet-offences = { version = "3.0.0", path = "../offences" }
|
||||||
pallet-staking = { version = "2.0.0", path = "../staking" }
|
pallet-staking = { version = "3.0.0", path = "../staking" }
|
||||||
pallet-staking-reward-curve = { version = "2.0.0", path = "../staking/reward-curve" }
|
pallet-staking-reward-curve = { version = "3.0.0", path = "../staking/reward-curve" }
|
||||||
pallet-timestamp = { version = "2.0.0", path = "../timestamp" }
|
pallet-timestamp = { version = "3.0.0", path = "../timestamp" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-identity"
|
name = "pallet-identity"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -16,16 +16,16 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
enumflags2 = { version = "0.6.2" }
|
enumflags2 = { version = "0.6.2" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-im-online"
|
name = "pallet-im-online"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -13,22 +13,22 @@ readme = "README.md"
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||||
pallet-authorship = { version = "2.0.0", default-features = false, path = "../authorship" }
|
pallet-authorship = { version = "3.0.0", default-features = false, path = "../authorship" }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-staking = { version = "2.0.0", default-features = false, path = "../../primitives/staking" }
|
sp-staking = { version = "3.0.0", default-features = false, path = "../../primitives/staking" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
|
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
pallet-session = { version = "2.0.0", path = "../session" }
|
pallet-session = { version = "3.0.0", path = "../session" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-indices"
|
name = "pallet-indices"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -15,18 +15,18 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-keyring = { version = "2.0.0", optional = true, path = "../../primitives/keyring" }
|
sp-keyring = { version = "3.0.0", optional = true, path = "../../primitives/keyring" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
|
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-lottery"
|
name = "pallet-lottery"
|
||||||
version = "2.0.0"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -14,17 +14,17 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
|
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
sp-io = { version = "2.0.0", path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../primitives/io" }
|
||||||
serde = { version = "1.0.101" }
|
serde = { version = "1.0.101" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-membership"
|
name = "pallet-membership"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -15,14 +15,14 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-mmr"
|
name = "pallet-mmr"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -13,16 +13,16 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
mmr-lib = { package = "ckb-merkle-mountain-range", default-features = false, version = "0.3.1" }
|
mmr-lib = { package = "ckb-merkle-mountain-range", default-features = false, version = "0.3.1" }
|
||||||
pallet-mmr-primitives = { version = "2.0.0", default-features = false, path = "./primitives" }
|
pallet-mmr-primitives = { version = "3.0.0", default-features = false, path = "./primitives" }
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
env_logger = "0.8"
|
env_logger = "0.8"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-mmr-primitives"
|
name = "pallet-mmr-primitives"
|
||||||
version = "2.0.0"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -13,13 +13,13 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../../system" }
|
||||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||||
sp-api = { version = "2.0.0", default-features = false, path = "../../../primitives/api" }
|
sp-api = { version = "3.0.0", default-features = false, path = "../../../primitives/api" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../../primitives/core" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
hex-literal = "0.3"
|
hex-literal = "0.3"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "frame-metadata"
|
name = "frame-metadata"
|
||||||
version = "12.0.1"
|
version = "13.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -15,8 +15,8 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-multisig"
|
name = "pallet-multisig"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -15,18 +15,18 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
|
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-nicks"
|
name = "pallet-nicks"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -15,15 +15,15 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -14,12 +14,12 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-offences"
|
name = "pallet-offences"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -13,18 +13,18 @@ readme = "README.md"
|
|||||||
targets = ["x86_64-unknown-linux-gnu"]
|
targets = ["x86_64-unknown-linux-gnu"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
pallet-balances = { version = "2.0.0", default-features = false, path = "../balances" }
|
pallet-balances = { version = "3.0.0", default-features = false, path = "../balances" }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-staking = { version = "2.0.0", default-features = false, path = "../../primitives/staking" }
|
sp-staking = { version = "3.0.0", default-features = false, path = "../../primitives/staking" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-io = { version = "2.0.0", path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../primitives/io" }
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-offences-benchmarking"
|
name = "pallet-offences-benchmarking"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -14,26 +14,26 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../../benchmarking" }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../../benchmarking" }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../../system" }
|
||||||
pallet-babe = { version = "2.0.0", default-features = false, path = "../../babe" }
|
pallet-babe = { version = "3.0.0", default-features = false, path = "../../babe" }
|
||||||
pallet-balances = { version = "2.0.0", default-features = false, path = "../../balances" }
|
pallet-balances = { version = "3.0.0", default-features = false, path = "../../balances" }
|
||||||
pallet-grandpa = { version = "2.0.0", default-features = false, path = "../../grandpa" }
|
pallet-grandpa = { version = "3.0.0", default-features = false, path = "../../grandpa" }
|
||||||
pallet-im-online = { version = "2.0.0", default-features = false, path = "../../im-online" }
|
pallet-im-online = { version = "3.0.0", default-features = false, path = "../../im-online" }
|
||||||
pallet-offences = { version = "2.0.0", default-features = false, features = ["runtime-benchmarks"], path = "../../offences" }
|
pallet-offences = { version = "3.0.0", default-features = false, features = ["runtime-benchmarks"], path = "../../offences" }
|
||||||
pallet-session = { version = "2.0.0", default-features = false, path = "../../session" }
|
pallet-session = { version = "3.0.0", default-features = false, path = "../../session" }
|
||||||
pallet-staking = { version = "2.0.0", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
|
pallet-staking = { version = "3.0.0", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||||
sp-staking = { version = "2.0.0", default-features = false, path = "../../../primitives/staking" }
|
sp-staking = { version = "3.0.0", default-features = false, path = "../../../primitives/staking" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
pallet-staking-reward-curve = { version = "2.0.0", path = "../../staking/reward-curve" }
|
pallet-staking-reward-curve = { version = "3.0.0", path = "../../staking/reward-curve" }
|
||||||
pallet-timestamp = { version = "2.0.0", path = "../../timestamp" }
|
pallet-timestamp = { version = "3.0.0", path = "../../timestamp" }
|
||||||
serde = { version = "1.0.101" }
|
serde = { version = "1.0.101" }
|
||||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../../primitives/core" }
|
||||||
sp-io = { version = "2.0.0", path = "../../../primitives/io" }
|
sp-io = { version = "3.0.0", path = "../../../primitives/io" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "pallet-proxy"
|
name = "pallet-proxy"
|
||||||
version = "2.0.1"
|
version = "3.0.0"
|
||||||
authors = ["Parity Technologies <admin@parity.io>"]
|
authors = ["Parity Technologies <admin@parity.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
@@ -15,19 +15,19 @@ targets = ["x86_64-unknown-linux-gnu"]
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.101", optional = true }
|
serde = { version = "1.0.101", optional = true }
|
||||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
|
||||||
frame-support = { version = "2.0.0", default-features = false, path = "../support" }
|
frame-support = { version = "3.0.0", default-features = false, path = "../support" }
|
||||||
frame-system = { version = "2.0.0", default-features = false, path = "../system" }
|
frame-system = { version = "3.0.0", default-features = false, path = "../system" }
|
||||||
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", default-features = false, path = "../../primitives/core" }
|
||||||
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
|
sp-io = { version = "3.0.0", default-features = false, path = "../../primitives/io" }
|
||||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
|
sp-runtime = { version = "3.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||||
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
|
sp-std = { version = "3.0.0", default-features = false, path = "../../primitives/std" }
|
||||||
|
|
||||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking", optional = true }
|
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../benchmarking", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sp-core = { version = "2.0.0", path = "../../primitives/core" }
|
sp-core = { version = "3.0.0", path = "../../primitives/core" }
|
||||||
pallet-balances = { version = "2.0.0", path = "../balances" }
|
pallet-balances = { version = "3.0.0", path = "../balances" }
|
||||||
pallet-utility = { version = "2.0.0", path = "../utility" }
|
pallet-utility = { version = "3.0.0", path = "../utility" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user