Cargo.toml fixups for the release (#4975)

* setting versions to development pre-release

fixing version in dependencies

* unset already released wasm-builder

* do not publish test crates

* adding licenses

* setting homepage metadata

* set repository url
This commit is contained in:
Benjamin Kampmann
2020-02-21 17:07:00 +01:00
committed by GitHub
parent 4dd4655f21
commit c412c6230e
165 changed files with 1890 additions and 1556 deletions
+162 -162
View File
File diff suppressed because it is too large Load Diff
+21 -19
View File
@@ -1,10 +1,12 @@
[package] [package]
name = "node-template" name = "node-template"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Anonymous"] authors = ["Anonymous"]
edition = "2018" edition = "2018"
license = "Unlicense" license = "Unlicense"
build = "build.rs" build = "build.rs"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[[bin]] [[bin]]
name = "node-template" name = "node-template"
@@ -14,25 +16,25 @@ futures = "0.3.1"
log = "0.4.8" log = "0.4.8"
structopt = "0.3.8" structopt = "0.3.8"
sc-cli = { version = "0.8.0", path = "../../../client/cli" } sc-cli = { version = "0.8.0-dev", path = "../../../client/cli" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sc-executor = { version = "0.8", path = "../../../client/executor" } sc-executor = { version = "0.8.0-dev", path = "../../../client/executor" }
sc-service = { version = "0.8", path = "../../../client/service" } sc-service = { version = "0.8.0-dev", path = "../../../client/service" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", path = "../../../primitives/inherents" }
sc-transaction-pool = { version = "2.0.0", path = "../../../client/transaction-pool" } sc-transaction-pool = { version = "2.0.0-dev", path = "../../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" } sp-transaction-pool = { version = "2.0.0-dev", path = "../../../primitives/transaction-pool" }
sc-network = { version = "0.8", path = "../../../client/network" } sc-network = { version = "0.8.0-dev", path = "../../../client/network" }
sc-consensus-aura = { version = "0.8", path = "../../../client/consensus/aura" } sc-consensus-aura = { version = "0.8.0-dev", path = "../../../client/consensus/aura" }
sp-consensus-aura = { version = "0.8", path = "../../../primitives/consensus/aura" } sp-consensus-aura = { version = "0.8.0-dev", path = "../../../primitives/consensus/aura" }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" }
grandpa = { version = "0.8", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" } grandpa = { version = "0.8.0-dev", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
grandpa-primitives = { version = "2.0.0", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" } grandpa-primitives = { version = "2.0.0-dev", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
sc-client = { version = "0.8", path = "../../../client/" } sc-client = { version = "0.8.0-dev", path = "../../../client/" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
sc-basic-authorship = { path = "../../../client/basic-authorship" } sc-basic-authorship = { path = "../../../client/basic-authorship" , version = "0.8.0-dev"}
node-template-runtime = { version = "2.0.0", path = "../runtime" } node-template-runtime = { version = "2.0.0-dev", path = "../runtime" }
[build-dependencies] [build-dependencies]
vergen = "3.0.4" vergen = "3.0.4"
build-script-utils = { version = "2.0.0", package = "substrate-build-script-utils", path = "../../../utils/build-script-utils" } build-script-utils = { version = "2.0.0-dev", package = "substrate-build-script-utils", path = "../../../utils/build-script-utils" }
@@ -2,7 +2,9 @@
authors = ['Anonymous'] authors = ['Anonymous']
edition = '2018' edition = '2018'
name = 'pallet-template' name = 'pallet-template'
version = '2.0.0' version = "2.0.0-dev"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
@@ -10,28 +12,28 @@ safe-mix = { default-features = false, version = '1.0.0' }
[dependencies.frame-support] [dependencies.frame-support]
default-features = false default-features = false
version = '2.0.0' version = "2.0.0-dev"
path = "../../../../frame/support" path = "../../../../frame/support"
[dependencies.system] [dependencies.system]
default-features = false default-features = false
package = 'frame-system' package = 'frame-system'
version = '2.0.0' version = "2.0.0-dev"
path = "../../../../frame/system" path = "../../../../frame/system"
[dev-dependencies.sp-core] [dev-dependencies.sp-core]
default-features = false default-features = false
version = '2.0.0' version = "2.0.0-dev"
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 = "2.0.0-dev"
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 = "2.0.0-dev"
path = "../../../../primitives/runtime" path = "../../../../primitives/runtime"
[features] [features]
+28 -26
View File
@@ -1,42 +1,44 @@
[package] [package]
name = "node-template-runtime" name = "node-template-runtime"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Anonymous"] authors = ["Anonymous"]
edition = "2018" edition = "2018"
license = "Unlicense" license = "Unlicense"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
aura = { version = "2.0.0", default-features = false, package = "pallet-aura", path = "../../../frame/aura" } aura = { version = "2.0.0-dev", default-features = false, package = "pallet-aura", path = "../../../frame/aura" }
balances = { version = "2.0.0", default-features = false, package = "pallet-balances", path = "../../../frame/balances" } balances = { version = "2.0.0-dev", default-features = false, package = "pallet-balances", path = "../../../frame/balances" }
frame-support = { version = "2.0.0", default-features = false, path = "../../../frame/support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../../../frame/support" }
grandpa = { version = "2.0.0", default-features = false, package = "pallet-grandpa", path = "../../../frame/grandpa" } grandpa = { version = "2.0.0-dev", default-features = false, package = "pallet-grandpa", path = "../../../frame/grandpa" }
indices = { version = "2.0.0", default-features = false, package = "pallet-indices", path = "../../../frame/indices" } indices = { version = "2.0.0-dev", default-features = false, package = "pallet-indices", path = "../../../frame/indices" }
randomness-collective-flip = { version = "2.0.0", default-features = false, package = "pallet-randomness-collective-flip", path = "../../../frame/randomness-collective-flip" } randomness-collective-flip = { version = "2.0.0-dev", default-features = false, package = "pallet-randomness-collective-flip", path = "../../../frame/randomness-collective-flip" }
sudo = { version = "2.0.0", default-features = false, package = "pallet-sudo", path = "../../../frame/sudo" } sudo = { version = "2.0.0-dev", default-features = false, package = "pallet-sudo", path = "../../../frame/sudo" }
system = { version = "2.0.0", default-features = false, package = "frame-system", path = "../../../frame/system" } system = { version = "2.0.0-dev", default-features = false, package = "frame-system", path = "../../../frame/system" }
timestamp = { version = "2.0.0", default-features = false, package = "pallet-timestamp", path = "../../../frame/timestamp" } timestamp = { version = "2.0.0-dev", default-features = false, package = "pallet-timestamp", path = "../../../frame/timestamp" }
transaction-payment = { version = "2.0.0", default-features = false, package = "pallet-transaction-payment", path = "../../../frame/transaction-payment" } transaction-payment = { version = "2.0.0-dev", default-features = false, package = "pallet-transaction-payment", path = "../../../frame/transaction-payment" }
frame-executive = { version = "2.0.0", default-features = false, path = "../../../frame/executive" } frame-executive = { version = "2.0.0-dev", 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 = "2.0.0-dev", default-features = false, path = "../../../primitives/api" }
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false} sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-dev"}
sp-consensus-aura = { version = "0.8", default-features = false, path = "../../../primitives/consensus/aura" } sp-consensus-aura = { version = "0.8.0-dev", default-features = false, path = "../../../primitives/consensus/aura" }
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/core" }
sp-inherents = { path = "../../../primitives/inherents", default-features = false} sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0-dev"}
sp-io = { version = "2.0.0", default-features = false, path = "../../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/io" }
sp-offchain = { version = "2.0.0", default-features = false, path = "../../../primitives/offchain" } sp-offchain = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/offchain" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/runtime" }
sp-session = { version = "2.0.0", default-features = false, path = "../../../primitives/session" } sp-session = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/session" }
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/std" }
sp-transaction-pool = { version = "2.0.0", default-features = false, path = "../../../primitives/transaction-pool" } sp-transaction-pool = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/transaction-pool" }
sp-version = { version = "2.0.0", default-features = false, path = "../../../primitives/version" } sp-version = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/version" }
template = { version = "2.0.0", default-features = false, path = "../pallets/template", package = "pallet-template" } template = { version = "2.0.0-dev", default-features = false, path = "../pallets/template", package = "pallet-template" }
[build-dependencies] [build-dependencies]
wasm-builder-runner = { version = "1.0.4", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" } wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }
[features] [features]
default = ["std"] default = ["std"]
+57 -55
View File
@@ -1,12 +1,14 @@
[package] [package]
name = "node-cli" name = "node-cli"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate node implementation in Rust." description = "Substrate node implementation in Rust."
build = "build.rs" build = "build.rs"
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
default-run = "substrate" default-run = "substrate"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.wasm-pack.profile.release] [package.metadata.wasm-pack.profile.release]
# `wasm-opt` has some problems on linux, see # `wasm-opt` has some problems on linux, see
@@ -40,69 +42,69 @@ structopt = { version = "0.3.8", optional = true }
tracing = "0.1.10" tracing = "0.1.10"
# primitives # primitives
sp-authority-discovery = { version = "2.0.0", path = "../../../primitives/authority-discovery" } sp-authority-discovery = { version = "2.0.0-dev", path = "../../../primitives/authority-discovery" }
sp-consensus-babe = { version = "0.8", path = "../../../primitives/consensus/babe" } sp-consensus-babe = { version = "0.8.0-dev", path = "../../../primitives/consensus/babe" }
grandpa-primitives = { version = "2.0.0", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" } grandpa-primitives = { version = "2.0.0-dev", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0", default-features = false, path = "../../../primitives/timestamp" } sp-timestamp = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/timestamp" }
sp-finality-tracker = { version = "2.0.0", default-features = false, path = "../../../primitives/finality-tracker" } sp-finality-tracker = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/finality-tracker" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", path = "../../../primitives/inherents" }
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", path = "../../../primitives/keyring" }
sp-io = { version = "2.0.0", path = "../../../primitives/io" } sp-io = { version = "2.0.0-dev", path = "../../../primitives/io" }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" }
# client dependencies # client dependencies
sc-client-api = { version = "2.0.0", path = "../../../client/api" } sc-client-api = { version = "2.0.0-dev", path = "../../../client/api" }
sc-client = { version = "0.8", path = "../../../client/" } sc-client = { version = "0.8.0-dev", path = "../../../client/" }
sc-chain-spec = { version = "2.0.0", path = "../../../client/chain-spec" } sc-chain-spec = { version = "2.0.0-dev", path = "../../../client/chain-spec" }
sc-transaction-pool = { version = "2.0.0", path = "../../../client/transaction-pool" } sc-transaction-pool = { version = "2.0.0-dev", path = "../../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" } sp-transaction-pool = { version = "2.0.0-dev", path = "../../../primitives/transaction-pool" }
sc-network = { version = "0.8", path = "../../../client/network" } sc-network = { version = "0.8.0-dev", path = "../../../client/network" }
sc-consensus-babe = { version = "0.8", path = "../../../client/consensus/babe" } sc-consensus-babe = { version = "0.8.0-dev", path = "../../../client/consensus/babe" }
grandpa = { version = "0.8", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" } grandpa = { version = "0.8.0-dev", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
sc-client-db = { version = "0.8", default-features = false, path = "../../../client/db" } sc-client-db = { version = "0.8.0-dev", default-features = false, path = "../../../client/db" }
sc-offchain = { version = "2.0.0", path = "../../../client/offchain" } sc-offchain = { version = "2.0.0-dev", path = "../../../client/offchain" }
sc-rpc = { version = "2.0.0", path = "../../../client/rpc" } sc-rpc = { version = "2.0.0-dev", path = "../../../client/rpc" }
sc-basic-authorship = { version = "0.8", path = "../../../client/basic-authorship" } sc-basic-authorship = { version = "0.8.0-dev", path = "../../../client/basic-authorship" }
sc-service = { version = "0.8", default-features = false, path = "../../../client/service" } sc-service = { version = "0.8.0-dev", default-features = false, path = "../../../client/service" }
sc-tracing = { version = "2.0.0", path = "../../../client/tracing" } sc-tracing = { version = "2.0.0-dev", path = "../../../client/tracing" }
sc-telemetry = { version = "2.0.0", path = "../../../client/telemetry" } sc-telemetry = { version = "2.0.0-dev", path = "../../../client/telemetry" }
sc-authority-discovery = { version = "0.8", path = "../../../client/authority-discovery" } sc-authority-discovery = { version = "0.8.0-dev", path = "../../../client/authority-discovery" }
# frame dependencies # frame dependencies
pallet-indices = { version = "2.0.0", path = "../../../frame/indices" } pallet-indices = { version = "2.0.0-dev", path = "../../../frame/indices" }
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../../../frame/timestamp" } pallet-timestamp = { version = "2.0.0-dev", default-features = false, path = "../../../frame/timestamp" }
pallet-contracts = { version = "2.0.0", path = "../../../frame/contracts" } pallet-contracts = { version = "2.0.0-dev", path = "../../../frame/contracts" }
frame-system = { version = "2.0.0", path = "../../../frame/system" } frame-system = { version = "2.0.0-dev", path = "../../../frame/system" }
pallet-balances = { version = "2.0.0", path = "../../../frame/balances" } pallet-balances = { version = "2.0.0-dev", path = "../../../frame/balances" }
pallet-transaction-payment = { version = "2.0.0", path = "../../../frame/transaction-payment" } pallet-transaction-payment = { version = "2.0.0-dev", path = "../../../frame/transaction-payment" }
frame-support = { version = "2.0.0", default-features = false, path = "../../../frame/support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../../../frame/support" }
pallet-im-online = { version = "2.0.0", default-features = false, path = "../../../frame/im-online" } pallet-im-online = { version = "2.0.0-dev", default-features = false, path = "../../../frame/im-online" }
pallet-authority-discovery = { version = "2.0.0", path = "../../../frame/authority-discovery" } pallet-authority-discovery = { version = "2.0.0-dev", path = "../../../frame/authority-discovery" }
# node-specific dependencies # node-specific dependencies
node-runtime = { version = "2.0.0", path = "../runtime" } node-runtime = { version = "2.0.0-dev", path = "../runtime" }
node-rpc = { version = "2.0.0", path = "../rpc" } node-rpc = { version = "2.0.0-dev", path = "../rpc" }
node-primitives = { version = "2.0.0", path = "../primitives" } node-primitives = { version = "2.0.0-dev", path = "../primitives" }
node-executor = { version = "2.0.0", path = "../executor" } node-executor = { version = "2.0.0-dev", path = "../executor" }
# CLI-specific dependencies # CLI-specific dependencies
sc-cli = { version = "0.8.0", optional = true, path = "../../../client/cli" } sc-cli = { version = "0.8.0-dev", optional = true, path = "../../../client/cli" }
frame-benchmarking-cli = { version = "2.0.0", optional = true, path = "../../../utils/frame/benchmarking-cli" } frame-benchmarking-cli = { version = "2.0.0-dev", optional = true, path = "../../../utils/frame/benchmarking-cli" }
node-transaction-factory = { version = "0.8.0", optional = true, path = "../transaction-factory" } node-transaction-factory = { version = "0.8.0-dev", optional = true, path = "../transaction-factory" }
node-inspect = { version = "0.8.0", optional = true, path = "../inspect" } node-inspect = { version = "0.8.0-dev", 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.7", optional = true } wasm-bindgen-futures = { version = "0.4.7", optional = true }
browser-utils = { path = "../../../utils/browser", optional = true } browser-utils = { path = "../../../utils/browser", optional = true , version = "0.8.0-dev"}
[dev-dependencies] [dev-dependencies]
sc-keystore = { version = "2.0.0", path = "../../../client/keystore" } sc-keystore = { version = "2.0.0-dev", path = "../../../client/keystore" }
sc-consensus-babe = { version = "0.8", features = ["test-helpers"], path = "../../../client/consensus/babe" } sc-consensus-babe = { version = "0.8.0-dev", features = ["test-helpers"], path = "../../../client/consensus/babe" }
sc-consensus-epochs = { version = "0.8", path = "../../../client/consensus/epochs" } sc-consensus-epochs = { version = "0.8.0-dev", path = "../../../client/consensus/epochs" }
sc-service-test = { version = "2.0.0", path = "../../../client/service/test" } sc-service-test = { version = "2.0.0-dev", path = "../../../client/service/test" }
futures = "0.3.1" futures = "0.3.1"
tempfile = "3.1.0" tempfile = "3.1.0"
assert_cmd = "0.12" assert_cmd = "0.12"
@@ -110,14 +112,14 @@ nix = "0.17"
serde_json = "1.0" serde_json = "1.0"
[build-dependencies] [build-dependencies]
build-script-utils = { version = "2.0.0", package = "substrate-build-script-utils", path = "../../../utils/build-script-utils" } build-script-utils = { version = "2.0.0-dev", package = "substrate-build-script-utils", path = "../../../utils/build-script-utils" }
structopt = { version = "0.3.8", optional = true } structopt = { version = "0.3.8", optional = true }
node-transaction-factory = { version = "0.8.0", optional = true, path = "../transaction-factory" } node-transaction-factory = { version = "0.8.0-dev", optional = true, path = "../transaction-factory" }
node-inspect = { version = "0.8.0", optional = true, path = "../inspect" } node-inspect = { version = "0.8.0-dev", optional = true, path = "../inspect" }
frame-benchmarking-cli = { version = "2.0.0", optional = true, path = "../../../utils/frame/benchmarking-cli" } frame-benchmarking-cli = { version = "2.0.0-dev", optional = true, path = "../../../utils/frame/benchmarking-cli" }
[build-dependencies.sc-cli] [build-dependencies.sc-cli]
version = "0.8.0" version = "0.8.0-dev"
package = "sc-cli" package = "sc-cli"
path = "../../../client/cli" path = "../../../client/cli"
optional = true optional = true
+26 -24
View File
@@ -1,40 +1,42 @@
[package] [package]
name = "node-executor" name = "node-executor"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate node implementation in Rust." description = "Substrate node implementation in Rust."
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
node-primitives = { version = "2.0.0", path = "../primitives" } node-primitives = { version = "2.0.0-dev", path = "../primitives" }
node-runtime = { version = "2.0.0", path = "../runtime" } node-runtime = { version = "2.0.0-dev", path = "../runtime" }
sc-executor = { version = "0.8", path = "../../../client/executor" } sc-executor = { version = "0.8.0-dev", path = "../../../client/executor" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-io = { version = "2.0.0", path = "../../../primitives/io" } sp-io = { version = "2.0.0-dev", path = "../../../primitives/io" }
sp-state-machine = { version = "0.8", path = "../../../primitives/state-machine" } sp-state-machine = { version = "0.8.0-dev", path = "../../../primitives/state-machine" }
sp-trie = { version = "2.0.0", path = "../../../primitives/trie" } sp-trie = { version = "2.0.0-dev", 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 = "2.0.0-dev", 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 = "2.0.0-dev", path = "../../../frame/support" }
frame-system = { version = "2.0.0", path = "../../../frame/system" } frame-system = { version = "2.0.0-dev", path = "../../../frame/system" }
node-testing = { version = "2.0.0", path = "../testing" } node-testing = { version = "2.0.0-dev", path = "../testing" }
pallet-balances = { version = "2.0.0", path = "../../../frame/balances" } pallet-balances = { version = "2.0.0-dev", path = "../../../frame/balances" }
pallet-contracts = { version = "2.0.0", path = "../../../frame/contracts" } pallet-contracts = { version = "2.0.0-dev", path = "../../../frame/contracts" }
pallet-grandpa = { version = "2.0.0", path = "../../../frame/grandpa" } pallet-grandpa = { version = "2.0.0-dev", path = "../../../frame/grandpa" }
pallet-im-online = { version = "2.0.0", path = "../../../frame/im-online" } pallet-im-online = { version = "2.0.0-dev", path = "../../../frame/im-online" }
pallet-indices = { version = "2.0.0", path = "../../../frame/indices" } pallet-indices = { version = "2.0.0-dev", path = "../../../frame/indices" }
pallet-session = { version = "2.0.0", path = "../../../frame/session" } pallet-session = { version = "2.0.0-dev", path = "../../../frame/session" }
pallet-timestamp = { version = "2.0.0", path = "../../../frame/timestamp" } pallet-timestamp = { version = "2.0.0-dev", path = "../../../frame/timestamp" }
pallet-transaction-payment = { version = "2.0.0", path = "../../../frame/transaction-payment" } pallet-transaction-payment = { version = "2.0.0-dev", path = "../../../frame/transaction-payment" }
pallet-treasury = { version = "2.0.0", path = "../../../frame/treasury" } pallet-treasury = { version = "2.0.0-dev", path = "../../../frame/treasury" }
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" } sp-application-crypto = { version = "2.0.0-dev", path = "../../../primitives/application-crypto" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
substrate-test-client = { version = "2.0.0", path = "../../../test-utils/client" } substrate-test-client = { version = "2.0.0-dev", path = "../../../test-utils/client" }
wabt = "0.9.2" wabt = "0.9.2"
[features] [features]
+10 -7
View File
@@ -1,17 +1,20 @@
[package] [package]
name = "node-inspect" name = "node-inspect"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.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.8.0-dev", path = "../../../client/cli" }
sc-client-api = { version = "2.0.0", path = "../../../client/api" } sc-client-api = { version = "2.0.0-dev", path = "../../../client/api" }
sc-service = { version = "0.8", default-features = false, path = "../../../client/service" } sc-service = { version = "0.8.0-dev", default-features = false, path = "../../../client/service" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../../primitives/blockchain" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
structopt = "0.3.8" structopt = "0.3.8"
+6 -4
View File
@@ -1,16 +1,18 @@
[package] [package]
name = "node-primitives" name = "node-primitives"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/runtime" }
[dev-dependencies] [dev-dependencies]
sp-serializer = { version = "2.0.0", path = "../../../primitives/serializer" } sp-serializer = { version = "2.0.0-dev", path = "../../../primitives/serializer" }
pretty_assertions = "0.6.1" pretty_assertions = "0.6.1"
[features] [features]
+5 -3
View File
@@ -1,9 +1,11 @@
[package] [package]
name = "node-rpc-client" name = "node-rpc-client"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
env_logger = "0.7.0" env_logger = "0.7.0"
@@ -11,5 +13,5 @@ futures = "0.1.29"
hyper = "0.12.35" hyper = "0.12.35"
jsonrpc-core-client = { version = "14.0.3", features = ["http", "ws"] } jsonrpc-core-client = { version = "14.0.3", features = ["http", "ws"] }
log = "0.4.8" log = "0.4.8"
node-primitives = { version = "2.0.0", path = "../primitives" } node-primitives = { version = "2.0.0-dev", path = "../primitives" }
sc-rpc = { version = "2.0.0", path = "../../../client/rpc" } sc-rpc = { version = "2.0.0-dev", path = "../../../client/rpc" }
+19 -17
View File
@@ -1,25 +1,27 @@
[package] [package]
name = "node-rpc" name = "node-rpc"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sc-client = { version = "0.8", path = "../../../client/" } sc-client = { version = "0.8.0-dev", path = "../../../client/" }
jsonrpc-core = "14.0.3" jsonrpc-core = "14.0.3"
node-primitives = { version = "2.0.0", path = "../primitives" } node-primitives = { version = "2.0.0-dev", path = "../primitives" }
node-runtime = { version = "2.0.0", path = "../runtime" } node-runtime = { version = "2.0.0-dev", path = "../runtime" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../../primitives/api" }
pallet-contracts-rpc = { version = "0.8", path = "../../../frame/contracts/rpc/" } pallet-contracts-rpc = { version = "0.8.0-dev", path = "../../../frame/contracts/rpc/" }
pallet-transaction-payment-rpc = { version = "2.0.0", path = "../../../frame/transaction-payment/rpc/" } pallet-transaction-payment-rpc = { version = "2.0.0-dev", path = "../../../frame/transaction-payment/rpc/" }
substrate-frame-rpc-system = { version = "2.0.0", path = "../../../utils/frame/rpc/system" } substrate-frame-rpc-system = { version = "2.0.0-dev", path = "../../../utils/frame/rpc/system" }
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" } sp-transaction-pool = { version = "2.0.0-dev", path = "../../../primitives/transaction-pool" }
sc-consensus-babe = { version = "0.8", path = "../../../client/consensus/babe" } sc-consensus-babe = { version = "0.8.0-dev", path = "../../../client/consensus/babe" }
sc-consensus-babe-rpc = { version = "0.8", path = "../../../client/consensus/babe/rpc" } sc-consensus-babe-rpc = { version = "0.8.0-dev", path = "../../../client/consensus/babe/rpc" }
sp-consensus-babe = { version = "0.8", path = "../../../primitives/consensus/babe" } sp-consensus-babe = { version = "0.8.0-dev", path = "../../../primitives/consensus/babe" }
sc-keystore = { version = "2.0.0", path = "../../../client/keystore" } sc-keystore = { version = "2.0.0-dev", path = "../../../client/keystore" }
sc-consensus-epochs = { version = "0.8", path = "../../../client/consensus/epochs" } sc-consensus-epochs = { version = "0.8.0-dev", path = "../../../client/consensus/epochs" }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../../primitives/blockchain" }
+55 -53
View File
@@ -1,10 +1,12 @@
[package] [package]
name = "node-runtime" name = "node-runtime"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
build = "build.rs" build = "build.rs"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
@@ -15,64 +17,64 @@ rustc-hex = { version = "2.0", optional = true }
serde = { version = "1.0.102", optional = true } serde = { version = "1.0.102", optional = true }
# primitives # primitives
sp-authority-discovery = { version = "2.0.0", default-features = false, path = "../../../primitives/authority-discovery" } sp-authority-discovery = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/authority-discovery" }
sp-consensus-babe = { version = "0.8", default-features = false, path = "../../../primitives/consensus/babe" } sp-consensus-babe = { version = "0.8.0-dev", default-features = false, path = "../../../primitives/consensus/babe" }
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false} sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-dev"}
sp-inherents = { version = "2.0.0", default-features = false, path = "../../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/inherents" }
node-primitives = { version = "2.0.0", default-features = false, path = "../primitives" } node-primitives = { version = "2.0.0-dev", default-features = false, path = "../primitives" }
sp-offchain = { version = "2.0.0", default-features = false, path = "../../../primitives/offchain" } sp-offchain = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/offchain" }
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/core" }
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/std" }
sp-api = { version = "2.0.0", default-features = false, path = "../../../primitives/api" } sp-api = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/api" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/runtime" }
sp-staking = { version = "2.0.0", default-features = false, path = "../../../primitives/staking" } sp-staking = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/staking" }
sp-keyring = { version = "2.0.0", optional = true, path = "../../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", optional = true, path = "../../../primitives/keyring" }
sp-session = { version = "2.0.0", default-features = false, path = "../../../primitives/session" } sp-session = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/session" }
sp-transaction-pool = { version = "2.0.0", default-features = false, path = "../../../primitives/transaction-pool" } sp-transaction-pool = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/transaction-pool" }
sp-version = { version = "2.0.0", default-features = false, path = "../../../primitives/version" } sp-version = { version = "2.0.0-dev", 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 = "2.0.0-dev", default-features = false, path = "../../../frame/executive" }
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../../../frame/benchmarking" } frame-benchmarking = { version = "2.0.0-dev", default-features = false, path = "../../../frame/benchmarking" }
frame-support = { version = "2.0.0", default-features = false, path = "../../../frame/support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../../../frame/support" }
frame-system = { version = "2.0.0", default-features = false, path = "../../../frame/system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../../../frame/system" }
frame-system-rpc-runtime-api = { version = "2.0.0", default-features = false, path = "../../../frame/system/rpc/runtime-api/" } frame-system-rpc-runtime-api = { version = "2.0.0-dev", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
pallet-authority-discovery = { version = "2.0.0", default-features = false, path = "../../../frame/authority-discovery" } pallet-authority-discovery = { version = "2.0.0-dev", default-features = false, path = "../../../frame/authority-discovery" }
pallet-authorship = { version = "2.0.0", default-features = false, path = "../../../frame/authorship" } pallet-authorship = { version = "2.0.0-dev", default-features = false, path = "../../../frame/authorship" }
pallet-babe = { version = "2.0.0", default-features = false, path = "../../../frame/babe" } pallet-babe = { version = "2.0.0-dev", default-features = false, path = "../../../frame/babe" }
pallet-balances = { version = "2.0.0", default-features = false, path = "../../../frame/balances" } pallet-balances = { version = "2.0.0-dev", default-features = false, path = "../../../frame/balances" }
pallet-collective = { version = "2.0.0", default-features = false, path = "../../../frame/collective" } pallet-collective = { version = "2.0.0-dev", default-features = false, path = "../../../frame/collective" }
pallet-contracts = { version = "2.0.0", default-features = false, path = "../../../frame/contracts" } pallet-contracts = { version = "2.0.0-dev", 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-dev", 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-dev", default-features = false, path = "../../../frame/contracts/rpc/runtime-api/" }
pallet-democracy = { version = "2.0.0", default-features = false, path = "../../../frame/democracy" } pallet-democracy = { version = "2.0.0-dev", default-features = false, path = "../../../frame/democracy" }
pallet-elections-phragmen = { version = "2.0.0", default-features = false, path = "../../../frame/elections-phragmen" } pallet-elections-phragmen = { version = "2.0.0-dev", default-features = false, path = "../../../frame/elections-phragmen" }
pallet-finality-tracker = { version = "2.0.0", default-features = false, path = "../../../frame/finality-tracker" } pallet-finality-tracker = { version = "2.0.0-dev", default-features = false, path = "../../../frame/finality-tracker" }
pallet-grandpa = { version = "2.0.0", default-features = false, path = "../../../frame/grandpa" } pallet-grandpa = { version = "2.0.0-dev", default-features = false, path = "../../../frame/grandpa" }
pallet-im-online = { version = "2.0.0", default-features = false, path = "../../../frame/im-online" } pallet-im-online = { version = "2.0.0-dev", default-features = false, path = "../../../frame/im-online" }
pallet-indices = { version = "2.0.0", default-features = false, path = "../../../frame/indices" } pallet-indices = { version = "2.0.0-dev", default-features = false, path = "../../../frame/indices" }
pallet-identity = { version = "2.0.0", default-features = false, path = "../../../frame/identity" } pallet-identity = { version = "2.0.0-dev", default-features = false, path = "../../../frame/identity" }
pallet-membership = { version = "2.0.0", default-features = false, path = "../../../frame/membership" } pallet-membership = { version = "2.0.0-dev", default-features = false, path = "../../../frame/membership" }
pallet-offences = { version = "2.0.0", default-features = false, path = "../../../frame/offences" } pallet-offences = { version = "2.0.0-dev", default-features = false, path = "../../../frame/offences" }
pallet-randomness-collective-flip = { version = "2.0.0", default-features = false, path = "../../../frame/randomness-collective-flip" } pallet-randomness-collective-flip = { version = "2.0.0-dev", default-features = false, path = "../../../frame/randomness-collective-flip" }
pallet-recovery = { version = "2.0.0", default-features = false, path = "../../../frame/recovery" } pallet-recovery = { version = "2.0.0-dev", default-features = false, path = "../../../frame/recovery" }
pallet-session = { version = "2.0.0", features = ["historical"], path = "../../../frame/session", default-features = false } pallet-session = { version = "2.0.0-dev", features = ["historical"], path = "../../../frame/session", default-features = false }
pallet-staking = { version = "2.0.0", features = ["migrate"], path = "../../../frame/staking", default-features = false } pallet-staking = { version = "2.0.0-dev", features = ["migrate"], path = "../../../frame/staking", default-features = false }
pallet-staking-reward-curve = { version = "2.0.0", path = "../../../frame/staking/reward-curve" } pallet-staking-reward-curve = { version = "2.0.0-dev", path = "../../../frame/staking/reward-curve" }
pallet-sudo = { version = "2.0.0", default-features = false, path = "../../../frame/sudo" } pallet-sudo = { version = "2.0.0-dev", default-features = false, path = "../../../frame/sudo" }
pallet-society = { version = "2.0.0", default-features = false, path = "../../../frame/society" } pallet-society = { version = "2.0.0-dev", default-features = false, path = "../../../frame/society" }
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../../../frame/timestamp" } pallet-timestamp = { version = "2.0.0-dev", default-features = false, path = "../../../frame/timestamp" }
pallet-treasury = { version = "2.0.0", default-features = false, path = "../../../frame/treasury" } pallet-treasury = { version = "2.0.0-dev", default-features = false, path = "../../../frame/treasury" }
pallet-utility = { version = "2.0.0", default-features = false, path = "../../../frame/utility" } pallet-utility = { version = "2.0.0-dev", default-features = false, path = "../../../frame/utility" }
pallet-transaction-payment = { version = "2.0.0", default-features = false, path = "../../../frame/transaction-payment" } pallet-transaction-payment = { version = "2.0.0-dev", 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 = "2.0.0-dev", 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 = "2.0.0-dev", default-features = false, path = "../../../frame/vesting" }
[build-dependencies] [build-dependencies]
wasm-builder-runner = { version = "1.0.4", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" } wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }
[dev-dependencies] [dev-dependencies]
sp-io = { version = "2.0.0", path = "../../../primitives/io" } sp-io = { version = "2.0.0-dev", path = "../../../primitives/io" }
[features] [features]
default = ["std"] default = ["std"]
+36 -34
View File
@@ -1,53 +1,55 @@
[package] [package]
name = "node-testing" name = "node-testing"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
description = "Test utilities for Substrate node." description = "Test utilities for Substrate node."
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
pallet-balances = { version = "2.0.0", path = "../../../frame/balances" } pallet-balances = { version = "2.0.0-dev", path = "../../../frame/balances" }
sc-client = { version = "0.8", path = "../../../client/" } sc-client = { version = "0.8.0-dev", path = "../../../client/" }
sc-client-db = { version = "0.8", path = "../../../client/db/", features = ["kvdb-rocksdb"] } sc-client-db = { version = "0.8.0-dev", path = "../../../client/db/", features = ["kvdb-rocksdb"] }
sc-client-api = { version = "2.0", path = "../../../client/api/" } sc-client-api = { version = "2.0.0-dev", path = "../../../client/api/" }
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
pallet-contracts = { version = "2.0.0", path = "../../../frame/contracts" } pallet-contracts = { version = "2.0.0-dev", path = "../../../frame/contracts" }
pallet-grandpa = { version = "2.0.0", path = "../../../frame/grandpa" } pallet-grandpa = { version = "2.0.0-dev", path = "../../../frame/grandpa" }
pallet-indices = { version = "2.0.0", path = "../../../frame/indices" } pallet-indices = { version = "2.0.0-dev", path = "../../../frame/indices" }
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", path = "../../../primitives/keyring" }
node-executor = { version = "2.0.0", path = "../executor" } node-executor = { version = "2.0.0-dev", path = "../executor" }
node-primitives = { version = "2.0.0", path = "../primitives" } node-primitives = { version = "2.0.0-dev", path = "../primitives" }
node-runtime = { version = "2.0.0", path = "../runtime" } node-runtime = { version = "2.0.0-dev", path = "../runtime" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-io = { version = "2.0.0", path = "../../../primitives/io" } sp-io = { version = "2.0.0-dev", path = "../../../primitives/io" }
frame-support = { version = "2.0.0", path = "../../../frame/support" } frame-support = { version = "2.0.0-dev", path = "../../../frame/support" }
pallet-session = { version = "2.0.0", path = "../../../frame/session" } pallet-session = { version = "2.0.0-dev", path = "../../../frame/session" }
pallet-society = { version = "2.0.0", path = "../../../frame/society" } pallet-society = { version = "2.0.0-dev", path = "../../../frame/society" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
pallet-staking = { version = "2.0.0", path = "../../../frame/staking" } pallet-staking = { version = "2.0.0-dev", path = "../../../frame/staking" }
sc-executor = { version = "0.8", path = "../../../client/executor", features = ["wasmtime"] } sc-executor = { version = "0.8.0-dev", path = "../../../client/executor", features = ["wasmtime"] }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" }
frame-system = { version = "2.0.0", path = "../../../frame/system" } frame-system = { version = "2.0.0-dev", path = "../../../frame/system" }
substrate-test-client = { version = "2.0.0", path = "../../../test-utils/client" } substrate-test-client = { version = "2.0.0-dev", path = "../../../test-utils/client" }
pallet-timestamp = { version = "2.0.0", path = "../../../frame/timestamp" } pallet-timestamp = { version = "2.0.0-dev", path = "../../../frame/timestamp" }
pallet-transaction-payment = { version = "2.0.0", path = "../../../frame/transaction-payment" } pallet-transaction-payment = { version = "2.0.0-dev", path = "../../../frame/transaction-payment" }
pallet-treasury = { version = "2.0.0", path = "../../../frame/treasury" } pallet-treasury = { version = "2.0.0-dev", path = "../../../frame/treasury" }
wabt = "0.9.2" wabt = "0.9.2"
sp-api = { version = "2.0.0", path = "../../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../../primitives/api" }
sp-finality-tracker = { version = "2.0.0", default-features = false, path = "../../../primitives/finality-tracker" } sp-finality-tracker = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/finality-tracker" }
sp-timestamp = { version = "2.0.0", default-features = false, path = "../../../primitives/timestamp" } sp-timestamp = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/timestamp" }
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" } sp-block-builder = { version = "2.0.0-dev", path = "../../../primitives/block-builder" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", path = "../../../primitives/inherents" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../../primitives/blockchain" }
log = "0.4.8" log = "0.4.8"
tempdir = "0.3" tempdir = "0.3"
fs_extra = "1" fs_extra = "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.8.0-dev", path = "../../../client/cli" }
sc-service = { version = "0.8.0", path = "../../../client/service", features = ["rocksdb"] } sc-service = { version = "0.8.0-dev", path = "../../../client/service", features = ["rocksdb"] }
[[bench]] [[bench]]
name = "import" name = "import"
@@ -1,20 +1,22 @@
[package] [package]
name = "node-transaction-factory" name = "node-transaction-factory"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" } sp-block-builder = { version = "2.0.0-dev", path = "../../../primitives/block-builder" }
sc-cli = { version = "0.8.0", path = "../../../client/cli" } sc-cli = { version = "0.8.0-dev", path = "../../../client/cli" }
sc-client-api = { version = "2.0.0", path = "../../../client/api" } sc-client-api = { version = "2.0.0-dev", path = "../../../client/api" }
sc-client = { version = "0.8", path = "../../../client" } sc-client = { version = "0.8.0-dev", path = "../../../client" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" }
log = "0.4.8" log = "0.4.8"
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../../primitives/api" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
sc-service = { version = "0.8", path = "../../../client/service" } sc-service = { version = "0.8.0-dev", path = "../../../client/service" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../../primitives/blockchain" }
@@ -1,15 +1,17 @@
[package] [package]
name = "chain-spec-builder" name = "chain-spec-builder"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
build = "build.rs" build = "build.rs"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
ansi_term = "0.12.1" ansi_term = "0.12.1"
sc-keystore = { version = "2.0.0", path = "../../../client/keystore" } sc-keystore = { version = "2.0.0-dev", path = "../../../client/keystore" }
node-cli = { version = "2.0.0", path = "../../node/cli" } node-cli = { version = "2.0.0-dev", path = "../../node/cli" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
rand = "0.7.2" rand = "0.7.2"
structopt = "0.3.8" structopt = "0.3.8"
+11 -9
View File
@@ -1,16 +1,18 @@
[package] [package]
name = "subkey" name = "subkey"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
futures = "0.1.29" futures = "0.1.29"
sp-core = { version = "*", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
node-runtime = { version = "*", path = "../../node/runtime" } node-runtime = { version = "2.0.0-dev", path = "../../node/runtime" }
node-primitives = { version = "*", path = "../../node/primitives" } node-primitives = { version = "2.0.0-dev", path = "../../node/primitives" }
sp-runtime = { version = "*", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
rand = "0.7.2" rand = "0.7.2"
clap = "2.33.0" clap = "2.33.0"
tiny-bip39 = "0.7" tiny-bip39 = "0.7"
@@ -19,13 +21,13 @@ substrate-bip39 = "0.3.1"
hex = "0.4.0" hex = "0.4.0"
hex-literal = "0.2.1" hex-literal = "0.2.1"
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
frame-system = { version = "2.0.0", path = "../../../frame/system" } frame-system = { version = "2.0.0-dev", path = "../../../frame/system" }
pallet-balances = { version = "2.0.0", path = "../../../frame/balances" } pallet-balances = { version = "2.0.0-dev", path = "../../../frame/balances" }
pallet-transaction-payment = { version = "2.0.0", path = "../../../frame/transaction-payment" } pallet-transaction-payment = { version = "2.0.0-dev", path = "../../../frame/transaction-payment" }
rpassword = "4.0.1" rpassword = "4.0.1"
itertools = "0.8.2" itertools = "0.8.2"
derive_more = { version = "0.99.2" } derive_more = { version = "0.99.2" }
sc-rpc = { version = "2.0.0", path = "../../../client/rpc" } sc-rpc = { version = "2.0.0-dev", path = "../../../client/rpc" }
jsonrpc-core-client = { version = "14.0.3", features = ["http"] } jsonrpc-core-client = { version = "14.0.3", features = ["http"] }
hyper = "0.12.35" hyper = "0.12.35"
libp2p = "0.16.1" libp2p = "0.16.1"
+21 -19
View File
@@ -1,41 +1,43 @@
[package] [package]
name = "sc-client" name = "sc-client"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sc-block-builder = { version = "0.8", path = "block-builder" } sc-block-builder = { version = "0.8.0-dev", path = "block-builder" }
sc-client-api = { version = "2.0.0", path = "api" } sc-client-api = { version = "2.0.0-dev", path = "api" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
sp-consensus = { version = "0.8", path = "../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../primitives/consensus/common" }
derive_more = { version = "0.99.2" } derive_more = { version = "0.99.2" }
sc-executor = { version = "0.8", path = "executor" } sc-executor = { version = "0.8.0-dev", path = "executor" }
sp-externalities = { version = "0.8.0", path = "../primitives/externalities" } sp-externalities = { version = "0.8.0-dev", path = "../primitives/externalities" }
fnv = { version = "1.0.6" } fnv = { version = "1.0.6" }
futures = { version = "0.3.1", features = ["compat"] } futures = { version = "0.3.1", features = ["compat"] }
hash-db = { version = "0.15.2" } hash-db = { version = "0.15.2" }
hex-literal = { version = "0.2.1" } hex-literal = { version = "0.2.1" }
sp-inherents = { version = "2.0.0", path = "../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", path = "../primitives/inherents" }
sp-keyring = { version = "2.0.0", path = "../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", path = "../primitives/keyring" }
kvdb = "0.4.0" kvdb = "0.4.0"
log = { version = "0.4.8" } log = { version = "0.4.8" }
parking_lot = "0.10.0" parking_lot = "0.10.0"
sp-core = { version = "2.0.0", path = "../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../primitives/core" }
sp-std = { version = "2.0.0", path = "../primitives/std" } sp-std = { version = "2.0.0-dev", path = "../primitives/std" }
sp-version = { version = "2.0.0", path = "../primitives/version" } sp-version = { version = "2.0.0-dev", path = "../primitives/version" }
sp-api = { version = "2.0.0", path = "../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../primitives/api" }
sp-runtime = { version = "2.0.0", path = "../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../primitives/runtime" }
sp-blockchain = { version = "2.0.0", path = "../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../primitives/blockchain" }
sp-state-machine = { version = "0.8", path = "../primitives/state-machine" } sp-state-machine = { version = "0.8.0-dev", path = "../primitives/state-machine" }
sc-telemetry = { version = "2.0.0", path = "telemetry" } sc-telemetry = { version = "2.0.0-dev", path = "telemetry" }
sp-trie = { version = "2.0.0", path = "../primitives/trie" } sp-trie = { version = "2.0.0-dev", path = "../primitives/trie" }
tracing = "0.1.10" tracing = "0.1.10"
[dev-dependencies] [dev-dependencies]
env_logger = "0.7.0" env_logger = "0.7.0"
tempfile = "3.1.0" tempfile = "3.1.0"
substrate-test-runtime-client = { version = "2.0.0", path = "../test-utils/runtime/client" } substrate-test-runtime-client = { version = "2.0.0-dev", path = "../test-utils/runtime/client" }
kvdb-memorydb = "0.4.0" kvdb-memorydb = "0.4.0"
sp-panic-handler = { version = "2.0.0", path = "../primitives/panic-handler" } sp-panic-handler = { version = "2.0.0-dev", path = "../primitives/panic-handler" }
+19 -17
View File
@@ -1,35 +1,37 @@
[package] [package]
name = "sc-client-api" name = "sc-client-api"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-consensus = { version = "0.8", path = "../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../primitives/consensus/common" }
derive_more = { version = "0.99.2" } derive_more = { version = "0.99.2" }
sc-executor = { version = "0.8", path = "../executor" } sc-executor = { version = "0.8.0-dev", path = "../executor" }
sp-externalities = { version = "0.8.0", path = "../../primitives/externalities" } sp-externalities = { version = "0.8.0-dev", path = "../../primitives/externalities" }
fnv = { version = "1.0.6" } fnv = { version = "1.0.6" }
futures = { version = "0.3.1" } futures = { version = "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 = "2.0.0-dev", path = "../../primitives/blockchain" }
hex-literal = { version = "0.2.1" } hex-literal = { version = "0.2.1" }
sp-inherents = { version = "2.0.0", default-features = false, path = "../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", default-features = false, path = "../../primitives/inherents" }
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", path = "../../primitives/keyring" }
kvdb = "0.4.0" kvdb = "0.4.0"
log = { version = "0.4.8" } log = { version = "0.4.8" }
parking_lot = "0.10.0" parking_lot = "0.10.0"
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-version = { version = "2.0.0", default-features = false, path = "../../primitives/version" } sp-version = { version = "2.0.0-dev", default-features = false, path = "../../primitives/version" }
sp-api = { version = "2.0.0", path = "../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../primitives/api" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-state-machine = { version = "0.8", path = "../../primitives/state-machine" } sp-state-machine = { version = "0.8.0-dev", path = "../../primitives/state-machine" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" } sc-telemetry = { version = "2.0.0-dev", path = "../telemetry" }
sp-trie = { version = "2.0.0", path = "../../primitives/trie" } sp-trie = { version = "2.0.0-dev", path = "../../primitives/trie" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" } sp-transaction-pool = { version = "2.0.0-dev", path = "../../primitives/transaction-pool" }
[dev-dependencies] [dev-dependencies]
sp-test-primitives = { version = "2.0.0", path = "../../primitives/test-primitives" } sp-test-primitives = { version = "2.0.0-dev", path = "../../primitives/test-primitives" }
+13 -11
View File
@@ -1,10 +1,12 @@
[package] [package]
name = "sc-authority-discovery" name = "sc-authority-discovery"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
build = "build.rs" build = "build.rs"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[build-dependencies] [build-dependencies]
prost-build = "0.6.1" prost-build = "0.6.1"
@@ -19,18 +21,18 @@ libp2p = { version = "0.16.1", default-features = false, features = ["secp256k1"
log = "0.4.8" log = "0.4.8"
prost = "0.6.1" prost = "0.6.1"
rand = "0.7.2" rand = "0.7.2"
sc-client-api = { version = "2.0.0", path = "../api" } sc-client-api = { version = "2.0.0-dev", path = "../api" }
sc-keystore = { version = "2.0.0", path = "../keystore" } sc-keystore = { version = "2.0.0-dev", path = "../keystore" }
sc-network = { version = "0.8", path = "../network" } sc-network = { version = "0.8.0-dev", 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 = "2.0.0-dev", path = "../../primitives/authority-discovery" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../primitives/runtime" }
sp-api = { version = "2.0.0", path = "../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../primitives/api" }
[dev-dependencies] [dev-dependencies]
env_logger = "0.7.0" env_logger = "0.7.0"
quickcheck = "0.9.0" quickcheck = "0.9.0"
sc-peerset = { version = "2.0.0", path = "../peerset" } sc-peerset = { version = "2.0.0-dev", path = "../peerset" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client"} substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../test-utils/runtime/client"}
+16 -14
View File
@@ -1,28 +1,30 @@
[package] [package]
name = "sc-basic-authorship" name = "sc-basic-authorship"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
log = "0.4.8" log = "0.4.8"
futures = "0.3.1" futures = "0.3.1"
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
sp-api = { version = "2.0.0", path = "../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../primitives/api" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../primitives/runtime" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../primitives/blockchain" }
sc-client = { version = "0.8", path = "../" } sc-client = { version = "0.8.0-dev", path = "../" }
sc-client-api = { version = "2.0.0", path = "../api" } sc-client-api = { version = "2.0.0-dev", path = "../api" }
sp-consensus = { version = "0.8", path = "../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0", path = "../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", path = "../../primitives/inherents" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" } sc-telemetry = { version = "2.0.0-dev", path = "../telemetry" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" } sp-transaction-pool = { version = "2.0.0-dev", path = "../../primitives/transaction-pool" }
sc-block-builder = { version = "0.8", path = "../block-builder" } sc-block-builder = { version = "0.8.0-dev", path = "../block-builder" }
tokio-executor = { version = "0.2.0-alpha.6", features = ["blocking"] } tokio-executor = { version = "0.2.0-alpha.6", features = ["blocking"] }
[dev-dependencies] [dev-dependencies]
sc-transaction-pool = { version = "2.0.0", path = "../../client/transaction-pool" } sc-transaction-pool = { version = "2.0.0-dev", path = "../../client/transaction-pool" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../test-utils/runtime/client" }
parking_lot = "0.10.0" parking_lot = "0.10.0"
+11 -9
View File
@@ -1,17 +1,19 @@
[package] [package]
name = "sc-block-builder" name = "sc-block-builder"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sp-state-machine = { version = "0.8", path = "../../primitives/state-machine" } sp-state-machine = { version = "0.8.0-dev", path = "../../primitives/state-machine" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../primitives/runtime" }
sp-api = { version = "2.0.0", path = "../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../primitives/api" }
sp-consensus = { version = "0.8.0", path = "../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sp-block-builder = { version = "2.0.0", path = "../../primitives/block-builder" } sp-block-builder = { version = "2.0.0-dev", path = "../../primitives/block-builder" }
sc-client-api = { version = "2.0.0", path = "../api" } sc-client-api = { version = "2.0.0-dev", path = "../api" }
codec = { package = "parity-scale-codec", version = "1.0.6", features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.6", features = ["derive"] }
+8 -6
View File
@@ -1,16 +1,18 @@
[package] [package]
name = "sc-chain-spec" name = "sc-chain-spec"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sc-chain-spec-derive = { version = "2.0.0", path = "./derive" } sc-chain-spec-derive = { version = "2.0.0-dev", path = "./derive" }
impl-trait-for-tuples = "0.1.3" impl-trait-for-tuples = "0.1.3"
sc-network = { version = "0.8", path = "../network" } sc-network = { version = "0.8.0-dev", path = "../network" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", 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 = "2.0.0-dev", path = "../../primitives/runtime" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" } sc-telemetry = { version = "2.0.0-dev", path = "../telemetry" }
@@ -1,9 +1,11 @@
[package] [package]
name = "sc-chain-spec-derive" name = "sc-chain-spec-derive"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[lib] [lib]
proc-macro = true proc-macro = true
+16 -14
View File
@@ -1,10 +1,12 @@
[package] [package]
name = "sc-cli" name = "sc-cli"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate CLI interface." description = "Substrate CLI interface."
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
clap = "2.33.0" clap = "2.33.0"
@@ -21,21 +23,21 @@ tokio = { version = "0.2.9", features = [ "signal", "rt-core", "rt-threaded" ] }
futures = "0.3.1" futures = "0.3.1"
fdlimit = "0.1.1" fdlimit = "0.1.1"
serde_json = "1.0.41" serde_json = "1.0.41"
sc-informant = { version = "0.8", path = "../informant" } sc-informant = { version = "0.8.0-dev", path = "../informant" }
sp-panic-handler = { version = "2.0.0", path = "../../primitives/panic-handler" } sp-panic-handler = { version = "2.0.0-dev", path = "../../primitives/panic-handler" }
sc-client-api = { version = "2.0.0", path = "../api" } sc-client-api = { version = "2.0.0-dev", path = "../api" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../primitives/blockchain" }
sc-network = { version = "0.8", path = "../network" } sc-network = { version = "0.8.0-dev", path = "../network" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../primitives/runtime" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sc-service = { version = "0.8", default-features = false, path = "../service" } sc-service = { version = "0.8.0-dev", default-features = false, path = "../service" }
sp-state-machine = { version = "0.8", path = "../../primitives/state-machine" } sp-state-machine = { version = "0.8.0-dev", path = "../../primitives/state-machine" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" } sc-telemetry = { version = "2.0.0-dev", path = "../telemetry" }
prometheus-exporter = { path = "../../utils/prometheus" } prometheus-exporter = { path = "../../utils/prometheus" , version = "0.8.0-dev"}
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", 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 = "2.0.0-dev", path = "../tracing" }
chrono = "0.4.10" chrono = "0.4.10"
parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] } parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] }
+26 -24
View File
@@ -1,43 +1,45 @@
[package] [package]
name = "sc-consensus-aura" name = "sc-consensus-aura"
version = "0.8.0" version = "0.8.0-dev"
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"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" } sp-application-crypto = { version = "2.0.0-dev", path = "../../../primitives/application-crypto" }
sp-consensus-aura = { version = "0.8", path = "../../../primitives/consensus/aura" } sp-consensus-aura = { version = "0.8.0-dev", path = "../../../primitives/consensus/aura" }
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" } sp-block-builder = { version = "2.0.0-dev", path = "../../../primitives/block-builder" }
sc-client = { version = "0.8", path = "../../" } sc-client = { version = "0.8.0-dev", path = "../../" }
sc-client-api = { version = "2.0.0", path = "../../api" } sc-client-api = { version = "2.0.0-dev", path = "../../api" }
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" }
derive_more = "0.99.2" derive_more = "0.99.2"
futures = "0.3.1" futures = "0.3.1"
futures-timer = "3.0.1" futures-timer = "3.0.1"
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", path = "../../../primitives/inherents" }
sc-keystore = { version = "2.0.0", path = "../../keystore" } sc-keystore = { version = "2.0.0-dev", path = "../../keystore" }
log = "0.4.8" log = "0.4.8"
parking_lot = "0.10.0" parking_lot = "0.10.0"
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../../primitives/blockchain" }
sp-io = { version = "2.0.0", path = "../../../primitives/io" } sp-io = { version = "2.0.0-dev", path = "../../../primitives/io" }
sp-version = { version = "2.0.0", path = "../../../primitives/version" } sp-version = { version = "2.0.0-dev", path = "../../../primitives/version" }
sc-consensus-slots = { version = "0.8", path = "../slots" } sc-consensus-slots = { version = "0.8.0-dev", path = "../slots" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../../primitives/api" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
sp-timestamp = { version = "2.0.0", path = "../../../primitives/timestamp" } sp-timestamp = { version = "2.0.0-dev", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0", path = "../../telemetry" } sc-telemetry = { version = "2.0.0-dev", path = "../../telemetry" }
[dev-dependencies] [dev-dependencies]
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", path = "../../../primitives/keyring" }
sc-executor = { version = "0.8", path = "../../executor" } sc-executor = { version = "0.8.0-dev", path = "../../executor" }
sc-network = { version = "0.8", path = "../../network" } sc-network = { version = "0.8.0-dev", path = "../../network" }
sc-network-test = { version = "0.8.0", path = "../../network/test" } sc-network-test = { version = "0.8.0-dev", path = "../../network/test" }
sc-service = { version = "0.8", path = "../../service" } sc-service = { version = "0.8.0-dev", path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../../test-utils/runtime/client" }
tokio = "0.1.22" tokio = "0.1.22"
env_logger = "0.7.0" env_logger = "0.7.0"
tempfile = "3.1.0" tempfile = "3.1.0"
+30 -28
View File
@@ -1,37 +1,39 @@
[package] [package]
name = "sc-consensus-babe" name = "sc-consensus-babe"
version = "0.8.0" version = "0.8.0-dev"
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"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
sp-consensus-babe = { version = "0.8", path = "../../../primitives/consensus/babe" } sp-consensus-babe = { version = "0.8.0-dev", path = "../../../primitives/consensus/babe" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" } sp-application-crypto = { version = "2.0.0-dev", path = "../../../primitives/application-crypto" }
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 = "2.0.0-dev", path = "../../../primitives/version" }
sp-io = { version = "2.0.0", path = "../../../primitives/io" } sp-io = { version = "2.0.0-dev", path = "../../../primitives/io" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", path = "../../../primitives/inherents" }
sp-timestamp = { version = "2.0.0", path = "../../../primitives/timestamp" } sp-timestamp = { version = "2.0.0-dev", path = "../../../primitives/timestamp" }
sc-telemetry = { version = "2.0.0", path = "../../telemetry" } sc-telemetry = { version = "2.0.0-dev", path = "../../telemetry" }
sc-keystore = { version = "2.0.0", path = "../../keystore" } sc-keystore = { version = "2.0.0-dev", path = "../../keystore" }
sc-client-api = { version = "2.0.0", path = "../../api" } sc-client-api = { version = "2.0.0-dev", path = "../../api" }
sc-client = { version = "0.8", path = "../../" } sc-client = { version = "0.8.0-dev", path = "../../" }
sc-consensus-epochs = { version = "0.8", path = "../epochs" } sc-consensus-epochs = { version = "0.8.0-dev", path = "../epochs" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../../primitives/api" }
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" } sp-block-builder = { version = "2.0.0-dev", path = "../../../primitives/block-builder" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../../primitives/blockchain" }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" }
sc-consensus-uncles = { version = "0.8", path = "../uncles" } sc-consensus-uncles = { version = "0.8.0-dev", path = "../uncles" }
sc-consensus-slots = { version = "0.8", path = "../slots" } sc-consensus-slots = { version = "0.8.0-dev", path = "../slots" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
fork-tree = { version = "2.0.0", path = "../../../utils/fork-tree" } fork-tree = { version = "2.0.0-dev", path = "../../../utils/fork-tree" }
futures = "0.3.1" futures = "0.3.1"
futures-timer = "3.0.1" futures-timer = "3.0.1"
parking_lot = "0.10.0" parking_lot = "0.10.0"
@@ -43,13 +45,13 @@ pdqselect = "0.1.0"
derive_more = "0.99.2" derive_more = "0.99.2"
[dev-dependencies] [dev-dependencies]
sp-keyring = { version = "2.0.0", path = "../../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", path = "../../../primitives/keyring" }
sc-executor = { version = "0.8", path = "../../executor" } sc-executor = { version = "0.8.0-dev", path = "../../executor" }
sc-network = { version = "0.8", path = "../../network" } sc-network = { version = "0.8.0-dev", path = "../../network" }
sc-network-test = { version = "0.8.0", path = "../../network/test" } sc-network-test = { version = "0.8.0-dev", path = "../../network/test" }
sc-service = { version = "0.8", path = "../../service" } sc-service = { version = "0.8.0-dev", path = "../../service" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../../test-utils/runtime/client" }
sc-block-builder = { version = "0.8", path = "../../block-builder" } sc-block-builder = { version = "0.8.0-dev", path = "../../block-builder" }
tokio = "0.1.22" tokio = "0.1.22"
env_logger = "0.7.0" env_logger = "0.7.0"
tempfile = "3.1.0" tempfile = "3.1.0"
+15 -13
View File
@@ -1,30 +1,32 @@
[package] [package]
name = "sc-consensus-babe-rpc" name = "sc-consensus-babe-rpc"
version = "0.8.0" version = "0.8.0-dev"
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"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sc-consensus-babe = { version = "0.8.0", path = "../" } sc-consensus-babe = { version = "0.8.0-dev", path = "../" }
jsonrpc-core = "14.0.3" jsonrpc-core = "14.0.3"
jsonrpc-core-client = "14.0.3" jsonrpc-core-client = "14.0.3"
jsonrpc-derive = "14.0.3" jsonrpc-derive = "14.0.3"
sp-consensus-babe = { version = "0.8", path = "../../../../primitives/consensus/babe" } sp-consensus-babe = { version = "0.8.0-dev", 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 = "2.0.0-dev", path = "../../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0", path = "../../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../../primitives/runtime" }
sc-consensus-epochs = { version = "0.8", path = "../../epochs" } sc-consensus-epochs = { version = "0.8.0-dev", path = "../../epochs" }
futures = "0.3.1" futures = "0.3.1"
derive_more = "0.99.2" derive_more = "0.99.2"
sp-api = { version = "2.0.0", path = "../../../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../../../primitives/api" }
sp-consensus = { version = "0.8", path = "../../../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../../../primitives/consensus/common" }
sp-core = { version = "2.0.0", path = "../../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../../primitives/core" }
sc-keystore = { version = "2.0.0", path = "../../../keystore" } sc-keystore = { version = "2.0.0-dev", path = "../../../keystore" }
[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-dev", path = "../../../../test-utils/runtime/client" }
sp-application-crypto = { version = "2.0.0", path = "../../../../primitives/application-crypto" } sp-application-crypto = { version = "2.0.0-dev", path = "../../../../primitives/application-crypto" }
sp-keyring = { version = "2.0.0", path = "../../../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", path = "../../../../primitives/keyring" }
tempfile = "3.1.0" tempfile = "3.1.0"
+8 -5
View File
@@ -1,14 +1,17 @@
[package] [package]
name = "sc-consensus-epochs" name = "sc-consensus-epochs"
version = "0.8.0" version = "0.8.0-dev"
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"
license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
parking_lot = "0.10.0" parking_lot = "0.10.0"
fork-tree = { version = "2.0.0", path = "../../../utils/fork-tree" } fork-tree = { version = "2.0.0-dev", path = "../../../utils/fork-tree" }
sp-runtime = { path = "../../../primitives/runtime" } sp-runtime = { path = "../../../primitives/runtime" , version = "2.0.0-dev"}
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../../primitives/blockchain" }
sc-client-api = { path = "../../api" } sc-client-api = { path = "../../api" , version = "2.0.0-dev"}
@@ -1,10 +1,12 @@
[package] [package]
name = "sc-consensus-manual-seal" name = "sc-consensus-manual-seal"
version = "0.8.0" version = "0.8.0-dev"
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"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
derive_more = "0.99.2" derive_more = "0.99.2"
@@ -16,19 +18,19 @@ log = "0.4.8"
parking_lot = "0.10.0" parking_lot = "0.10.0"
serde = { version = "1.0", features=["derive"] } serde = { version = "1.0", features=["derive"] }
sc-client = { path = "../../../client" } sc-client = { path = "../../../client" , version = "0.8.0-dev"}
sc-client-api = { path = "../../../client/api" } sc-client-api = { path = "../../../client/api" , version = "2.0.0-dev"}
sc-transaction-pool = { path = "../../transaction-pool" } sc-transaction-pool = { path = "../../transaction-pool" , version = "2.0.0-dev"}
sp-blockchain = { path = "../../../primitives/blockchain" } sp-blockchain = { path = "../../../primitives/blockchain" , version = "2.0.0-dev"}
sp-consensus = { package = "sp-consensus", path = "../../../primitives/consensus/common" } sp-consensus = { package = "sp-consensus", path = "../../../primitives/consensus/common" , version = "0.8.0-dev"}
sp-inherents = { path = "../../../primitives/inherents" } sp-inherents = { path = "../../../primitives/inherents" , version = "2.0.0-dev"}
sp-runtime = { path = "../../../primitives/runtime" } sp-runtime = { path = "../../../primitives/runtime" , version = "2.0.0-dev"}
sp-transaction-pool = { path = "../../../primitives/transaction-pool" } sp-transaction-pool = { path = "../../../primitives/transaction-pool" , version = "2.0.0-dev"}
[dev-dependencies] [dev-dependencies]
sc-basic-authorship = { path = "../../basic-authorship" } sc-basic-authorship = { path = "../../basic-authorship" , version = "0.8.0-dev"}
substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" } substrate-test-runtime-client = { path = "../../../test-utils/runtime/client" , version = "2.0.0-dev"}
substrate-test-runtime-transaction-pool = { path = "../../../test-utils/runtime/transaction-pool" } substrate-test-runtime-transaction-pool = { path = "../../../test-utils/runtime/transaction-pool" , version = "2.0.0-dev"}
tokio = { version = "0.2", features = ["rt-core", "macros"] } tokio = { version = "0.2", features = ["rt-core", "macros"] }
env_logger = "0.7.0" env_logger = "0.7.0"
tempfile = "3.1.0" tempfile = "3.1.0"
+13 -11
View File
@@ -1,23 +1,25 @@
[package] [package]
name = "sc-consensus-pow" name = "sc-consensus-pow"
version = "0.8.0" version = "0.8.0-dev"
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"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../../primitives/api" }
sc-client-api = { version = "2.0.0", path = "../../api" } sc-client-api = { version = "2.0.0-dev", path = "../../api" }
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" } sp-block-builder = { version = "2.0.0-dev", path = "../../../primitives/block-builder" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", path = "../../../primitives/inherents" }
sp-consensus-pow = { version = "0.8", path = "../../../primitives/consensus/pow" } sp-consensus-pow = { version = "0.8.0-dev", path = "../../../primitives/consensus/pow" }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", 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"] }
sp-timestamp = { version = "2.0.0", path = "../../../primitives/timestamp" } sp-timestamp = { version = "2.0.0-dev", path = "../../../primitives/timestamp" }
derive_more = "0.99.2" derive_more = "0.99.2"
+13 -11
View File
@@ -1,27 +1,29 @@
[package] [package]
name = "sc-consensus-slots" name = "sc-consensus-slots"
version = "0.8.0" version = "0.8.0-dev"
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"
build = "build.rs" build = "build.rs"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
sc-client-api = { version = "2.0.0", path = "../../api" } sc-client-api = { version = "2.0.0-dev", path = "../../api" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
sp-state-machine = { version = "0.8.0", path = "../../../primitives/state-machine" } sp-state-machine = { version = "0.8.0-dev", path = "../../../primitives/state-machine" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../../primitives/api" }
sc-telemetry = { version = "2.0.0", path = "../../telemetry" } sc-telemetry = { version = "2.0.0-dev", path = "../../telemetry" }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", path = "../../../primitives/inherents" }
futures = "0.3.1" futures = "0.3.1"
futures-timer = "3.0.1" futures-timer = "3.0.1"
parking_lot = "0.10.0" parking_lot = "0.10.0"
log = "0.4.8" log = "0.4.8"
[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-dev", path = "../../../test-utils/runtime/client" }
+9 -7
View File
@@ -1,16 +1,18 @@
[package] [package]
name = "sc-consensus-uncles" name = "sc-consensus-uncles"
version = "0.8.0" version = "0.8.0-dev"
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"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sc-client-api = { version = "2.0.0", path = "../../api" } sc-client-api = { version = "2.0.0-dev", path = "../../api" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
sp-authorship = { version = "2.0.0", path = "../../../primitives/authorship" } sp-authorship = { version = "2.0.0-dev", path = "../../../primitives/authorship" }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" }
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", path = "../../../primitives/inherents" }
log = "0.4.8" log = "0.4.8"
+15 -13
View File
@@ -1,9 +1,11 @@
[package] [package]
name = "sc-client-db" name = "sc-client-db"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
parking_lot = "0.10.0" parking_lot = "0.10.0"
@@ -17,20 +19,20 @@ hash-db = "0.15.2"
parity-util-mem = { version = "0.5.1", default-features = false, features = ["std"] } parity-util-mem = { version = "0.5.1", default-features = false, features = ["std"] }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
sc-client-api = { version = "2.0.0", path = "../api" } sc-client-api = { version = "2.0.0-dev", path = "../api" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../primitives/runtime" }
sc-client = { version = "0.8", path = "../" } sc-client = { version = "0.8.0-dev", path = "../" }
sp-state-machine = { version = "0.8", path = "../../primitives/state-machine" } sp-state-machine = { version = "0.8.0-dev", path = "../../primitives/state-machine" }
sc-executor = { version = "0.8", path = "../executor" } sc-executor = { version = "0.8.0-dev", path = "../executor" }
sc-state-db = { version = "0.8", path = "../state-db" } sc-state-db = { version = "0.8.0-dev", path = "../state-db" }
sp-trie = { version = "2.0.0", path = "../../primitives/trie" } sp-trie = { version = "2.0.0-dev", path = "../../primitives/trie" }
sp-consensus = { version = "0.8", path = "../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../primitives/consensus/common" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../primitives/blockchain" }
[dev-dependencies] [dev-dependencies]
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", path = "../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../test-utils/runtime/client" }
env_logger = "0.7.0" env_logger = "0.7.0"
quickcheck = "0.9" quickcheck = "0.9"
kvdb-rocksdb = "0.5" kvdb-rocksdb = "0.5"
+18 -16
View File
@@ -1,28 +1,30 @@
[package] [package]
name = "sc-executor" name = "sc-executor"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
derive_more = "0.99.2" derive_more = "0.99.2"
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
sp-io = { version = "2.0.0", path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", path = "../../primitives/io" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sp-trie = { version = "2.0.0", path = "../../primitives/trie" } sp-trie = { version = "2.0.0-dev", path = "../../primitives/trie" }
sp-serializer = { version = "2.0.0", path = "../../primitives/serializer" } sp-serializer = { version = "2.0.0-dev", path = "../../primitives/serializer" }
sp-version = { version = "2.0.0", path = "../../primitives/version" } sp-version = { version = "2.0.0-dev", path = "../../primitives/version" }
sp-panic-handler = { version = "2.0.0", path = "../../primitives/panic-handler" } sp-panic-handler = { version = "2.0.0-dev", 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-wasm-interface = { version = "2.0.0", path = "../../primitives/wasm-interface" } sp-wasm-interface = { version = "2.0.0-dev", path = "../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0", path = "../../primitives/runtime-interface" } sp-runtime-interface = { version = "2.0.0-dev", path = "../../primitives/runtime-interface" }
sp-externalities = { version = "0.8.0", path = "../../primitives/externalities" } sp-externalities = { version = "0.8.0-dev", path = "../../primitives/externalities" }
sc-executor-common = { version = "0.8", path = "common" } sc-executor-common = { version = "0.8.0-dev", path = "common" }
sc-executor-wasmi = { version = "0.8", path = "wasmi" } sc-executor-wasmi = { version = "0.8.0-dev", path = "wasmi" }
sc-executor-wasmtime = { version = "0.8", path = "wasmtime", optional = true } sc-executor-wasmtime = { version = "0.8.0-dev", path = "wasmtime", optional = true }
parking_lot = "0.10.0" parking_lot = "0.10.0"
log = "0.4.8" log = "0.4.8"
libsecp256k1 = "0.3.4" libsecp256k1 = "0.3.4"
@@ -31,9 +33,9 @@ libsecp256k1 = "0.3.4"
assert_matches = "1.3.0" assert_matches = "1.3.0"
wabt = "0.9.2" wabt = "0.9.2"
hex-literal = "0.2.1" hex-literal = "0.2.1"
sc-runtime-test = { version = "2.0.0", path = "runtime-test" } sc-runtime-test = { version = "2.0.0-dev", path = "runtime-test" }
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" } substrate-test-runtime = { version = "2.0.0-dev", path = "../../test-utils/runtime" }
sp-state-machine = { version = "0.8", path = "../../primitives/state-machine" } sp-state-machine = { version = "0.8.0-dev", path = "../../primitives/state-machine" }
test-case = "0.3.3" test-case = "0.3.3"
[features] [features]
+8 -6
View File
@@ -1,20 +1,22 @@
[package] [package]
name = "sc-executor-common" name = "sc-executor-common"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
log = "0.4.8" log = "0.4.8"
derive_more = "0.99.2" derive_more = "0.99.2"
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
wasmi = "0.6.2" wasmi = "0.6.2"
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0", path = "../../../primitives/allocator" } sp-allocator = { version = "2.0.0-dev", path = "../../../primitives/allocator" }
sp-wasm-interface = { version = "2.0.0", path = "../../../primitives/wasm-interface" } sp-wasm-interface = { version = "2.0.0-dev", path = "../../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0", path = "../../../primitives/runtime-interface" } sp-runtime-interface = { version = "2.0.0-dev", path = "../../../primitives/runtime-interface" }
sp-serializer = { version = "2.0.0", path = "../../../primitives/serializer" } sp-serializer = { version = "2.0.0-dev", path = "../../../primitives/serializer" }
[features] [features]
default = [] default = []
@@ -1,21 +1,24 @@
[package] [package]
name = "sc-runtime-test" name = "sc-runtime-test"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
build = "build.rs" build = "build.rs"
license = "GPL-3.0" license = "GPL-3.0"
publish = false
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/io" }
sp-sandbox = { version = "0.8.0", default-features = false, path = "../../../primitives/sandbox" } sp-sandbox = { version = "0.8.0-dev", default-features = false, path = "../../../primitives/sandbox" }
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/runtime" }
sp-allocator = { version = "2.0.0", default-features = false, path = "../../../primitives/allocator" } sp-allocator = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/allocator" }
[build-dependencies] [build-dependencies]
wasm-builder-runner = { version = "1.0.4", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" } wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }
[features] [features]
default = [ "std" ] default = [ "std" ]
+8 -6
View File
@@ -1,17 +1,19 @@
[package] [package]
name = "sc-executor-wasmi" name = "sc-executor-wasmi"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
log = "0.4.8" log = "0.4.8"
wasmi = "0.6.2" wasmi = "0.6.2"
parity-wasm = "0.41.0" parity-wasm = "0.41.0"
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
sc-executor-common = { version = "0.8", path = "../common" } sc-executor-common = { version = "0.8.0-dev", path = "../common" }
sp-wasm-interface = { version = "2.0.0", path = "../../../primitives/wasm-interface" } sp-wasm-interface = { version = "2.0.0-dev", path = "../../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0", path = "../../../primitives/runtime-interface" } sp-runtime-interface = { version = "2.0.0-dev", path = "../../../primitives/runtime-interface" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0", path = "../../../primitives/allocator" } sp-allocator = { version = "2.0.0-dev", path = "../../../primitives/allocator" }
@@ -1,20 +1,22 @@
[package] [package]
name = "sc-executor-wasmtime" name = "sc-executor-wasmtime"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
log = "0.4.8" log = "0.4.8"
wasmi = "0.6.2" wasmi = "0.6.2"
parity-wasm = "0.41.0" parity-wasm = "0.41.0"
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
sc-executor-common = { version = "0.8", path = "../common" } sc-executor-common = { version = "0.8.0-dev", path = "../common" }
sp-wasm-interface = { version = "2.0.0", path = "../../../primitives/wasm-interface" } sp-wasm-interface = { version = "2.0.0-dev", path = "../../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0", path = "../../../primitives/runtime-interface" } sp-runtime-interface = { version = "2.0.0-dev", path = "../../../primitives/runtime-interface" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-allocator = { version = "2.0.0", path = "../../../primitives/allocator" } sp-allocator = { version = "2.0.0-dev", path = "../../../primitives/allocator" }
wasmtime = "0.11" wasmtime = "0.11"
+25 -23
View File
@@ -1,12 +1,14 @@
[package] [package]
name = "sc-finality-grandpa" name = "sc-finality-grandpa"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
fork-tree = { version = "2.0.0", path = "../../utils/fork-tree" } fork-tree = { version = "2.0.0-dev", path = "../../utils/fork-tree" }
futures = "0.3.1" futures = "0.3.1"
futures-timer = "3.0.1" futures-timer = "3.0.1"
log = "0.4.8" log = "0.4.8"
@@ -14,34 +16,34 @@ parking_lot = "0.10.0"
rand = "0.7.2" rand = "0.7.2"
assert_matches = "1.3.0" assert_matches = "1.3.0"
parity-scale-codec = { version = "1.0.0", features = ["derive"] } parity-scale-codec = { version = "1.0.0", features = ["derive"] }
sp-arithmetic = { version = "2.0.0", path = "../../primitives/arithmetic" } sp-arithmetic = { version = "2.0.0-dev", path = "../../primitives/arithmetic" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../primitives/runtime" }
sp-consensus = { version = "0.8", path = "../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../primitives/consensus/common" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" } sc-telemetry = { version = "2.0.0-dev", path = "../telemetry" }
sc-keystore = { version = "2.0.0", path = "../keystore" } sc-keystore = { version = "2.0.0-dev", 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 = "2.0.0-dev", path = "../api" }
sc-client = { version = "0.8", path = "../" } sc-client = { version = "0.8.0-dev", path = "../" }
sp-inherents = { version = "2.0.0", path = "../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", path = "../../primitives/inherents" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../primitives/blockchain" }
sc-network = { version = "0.8", path = "../network" } sc-network = { version = "0.8.0-dev", path = "../network" }
sc-network-gossip = { version = "0.8", path = "../network-gossip" } sc-network-gossip = { version = "0.8.0-dev", path = "../network-gossip" }
sp-finality-tracker = { version = "2.0.0", path = "../../primitives/finality-tracker" } sp-finality-tracker = { version = "2.0.0-dev", path = "../../primitives/finality-tracker" }
sp-finality-grandpa = { version = "2.0.0", path = "../../primitives/finality-grandpa" } sp-finality-grandpa = { version = "2.0.0-dev", path = "../../primitives/finality-grandpa" }
finality-grandpa = { version = "0.11.1", features = ["derive-codec"] } finality-grandpa = { version = "0.11.1", features = ["derive-codec"] }
pin-project = "0.4.6" pin-project = "0.4.6"
[dev-dependencies] [dev-dependencies]
finality-grandpa = { version = "0.11.1", features = ["derive-codec", "test-helpers"] } finality-grandpa = { version = "0.11.1", features = ["derive-codec", "test-helpers"] }
sc-network = { version = "0.8", path = "../network" } sc-network = { version = "0.8.0-dev", path = "../network" }
sc-network-test = { version = "0.8.0", path = "../network/test" } sc-network-test = { version = "0.8.0-dev", path = "../network/test" }
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", path = "../../primitives/keyring" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../test-utils/runtime/client" }
sp-consensus-babe = { version = "0.8", path = "../../primitives/consensus/babe" } sp-consensus-babe = { version = "0.8.0-dev", path = "../../primitives/consensus/babe" }
sp-state-machine = { version = "0.8", path = "../../primitives/state-machine" } sp-state-machine = { version = "0.8.0-dev", path = "../../primitives/state-machine" }
env_logger = "0.7.0" env_logger = "0.7.0"
tokio = "0.1.22" tokio = "0.1.22"
tempfile = "3.1.0" tempfile = "3.1.0"
sp-api = { version = "2.0.0", path = "../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../primitives/api" }
futures01 = { package = "futures", version = "0.1.29" } futures01 = { package = "futures", version = "0.1.29" }
+8 -6
View File
@@ -1,10 +1,12 @@
[package] [package]
name = "sc-informant" name = "sc-informant"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate informant." description = "Substrate informant."
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
ansi_term = "0.12.1" ansi_term = "0.12.1"
@@ -12,8 +14,8 @@ futures = "0.3.1"
log = "0.4.8" log = "0.4.8"
parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] } parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] }
wasm-timer = "0.2" wasm-timer = "0.2"
sc-client-api = { version = "2.0.0", path = "../api" } sc-client-api = { version = "2.0.0-dev", path = "../api" }
sc-network = { version = "0.8", path = "../network" } sc-network = { version = "0.8.0-dev", path = "../network" }
sc-service = { version = "0.8", default-features = false, path = "../service" } sc-service = { version = "0.8.0-dev", default-features = false, path = "../service" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../primitives/blockchain" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../primitives/runtime" }
+5 -3
View File
@@ -1,14 +1,16 @@
[package] [package]
name = "sc-keystore" name = "sc-keystore"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
derive_more = "0.99.2" derive_more = "0.99.2"
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sp-application-crypto = { version = "2.0.0", path = "../../primitives/application-crypto" } sp-application-crypto = { version = "2.0.0-dev", path = "../../primitives/application-crypto" }
hex = "0.4.0" hex = "0.4.0"
rand = "0.7.2" rand = "0.7.2"
serde_json = "1.0.41" serde_json = "1.0.41"
+5 -3
View File
@@ -1,10 +1,12 @@
[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.0" version = "0.8.0-dev"
license = "GPL-3.0" license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
futures = "0.3.1" futures = "0.3.1"
@@ -13,6 +15,6 @@ libp2p = { version = "0.16.1", default-features = false, features = ["libp2p-web
log = "0.4.8" log = "0.4.8"
lru = "0.1.2" lru = "0.1.2"
parking_lot = "0.10.0" parking_lot = "0.10.0"
sc-network = { version = "0.8", path = "../network" } sc-network = { version = "0.8.0-dev", path = "../network" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../primitives/runtime" }
wasm-timer = "0.2" wasm-timer = "0.2"
+21 -19
View File
@@ -1,10 +1,12 @@
[package] [package]
description = "Substrate network protocol" description = "Substrate network protocol"
name = "sc-network" name = "sc-network"
version = "0.8.0" version = "0.8.0-dev"
license = "GPL-3.0" license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[build-dependencies] [build-dependencies]
prost-build = "0.6.1" prost-build = "0.6.1"
@@ -17,7 +19,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 = "2.0.0-dev", path = "../../utils/fork-tree" }
futures = "0.3.1" futures = "0.3.1"
futures_codec = "0.3.3" futures_codec = "0.3.3"
futures-timer = "3.0.1" futures-timer = "3.0.1"
@@ -32,25 +34,25 @@ parking_lot = "0.10.0"
prost = "0.6.1" prost = "0.6.1"
rand = "0.7.2" rand = "0.7.2"
rustc-hex = "2.0.1" rustc-hex = "2.0.1"
sc-block-builder = { version = "0.8", path = "../block-builder" } sc-block-builder = { version = "0.8.0-dev", path = "../block-builder" }
sc-client = { version = "0.8", path = "../" } sc-client = { version = "0.8.0-dev", path = "../" }
sc-client-api = { version = "2.0.0", path = "../api" } sc-client-api = { version = "2.0.0-dev", path = "../api" }
sc-peerset = { version = "2.0.0", path = "../peerset" } sc-peerset = { version = "2.0.0-dev", path = "../peerset" }
pin-project = "0.4.6" pin-project = "0.4.6"
serde = { version = "1.0.101", features = ["derive"] } serde = { version = "1.0.101", features = ["derive"] }
serde_json = "1.0.41" serde_json = "1.0.41"
slog = { version = "2.5.2", features = ["nested-values"] } slog = { version = "2.5.2", features = ["nested-values"] }
slog_derive = "0.2.0" slog_derive = "0.2.0"
smallvec = "0.6.10" smallvec = "0.6.10"
sp-arithmetic = { version = "2.0.0", path = "../../primitives/arithmetic" } sp-arithmetic = { version = "2.0.0-dev", path = "../../primitives/arithmetic" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../primitives/blockchain" }
sp-consensus = { version = "0.8", path = "../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../primitives/consensus/common" }
sp-consensus-babe = { version = "0.8", path = "../../primitives/consensus/babe" } sp-consensus-babe = { version = "0.8.0-dev", path = "../../primitives/consensus/babe" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sp-keyring = { version = "2.0.0", optional = true, path = "../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", optional = true, path = "../../primitives/keyring" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../primitives/runtime" }
substrate-test-client = { version = "2.0.0", optional = true, path = "../../test-utils/client" } substrate-test-client = { version = "2.0.0-dev", optional = true, path = "../../test-utils/client" }
substrate-test-runtime-client = { version = "2.0.0", optional = true, path = "../../test-utils/runtime/client" } substrate-test-runtime-client = { version = "2.0.0-dev", optional = true, path = "../../test-utils/runtime/client" }
thiserror = "1" thiserror = "1"
unsigned-varint = { version = "0.3.1", features = ["futures", "futures-codec"] } unsigned-varint = { version = "0.3.1", features = ["futures", "futures-codec"] }
void = "1.0.2" void = "1.0.2"
@@ -62,10 +64,10 @@ assert_matches = "1.3"
env_logger = "0.7.0" env_logger = "0.7.0"
quickcheck = "0.9.0" quickcheck = "0.9.0"
rand = "0.7.2" rand = "0.7.2"
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", path = "../../primitives/keyring" }
sp-test-primitives = { version = "2.0.0", path = "../../primitives/test-primitives" } sp-test-primitives = { version = "2.0.0-dev", path = "../../primitives/test-primitives" }
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" } substrate-test-runtime = { version = "2.0.0-dev", 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-dev", path = "../../test-utils/runtime/client" }
tempfile = "3.1.0" tempfile = "3.1.0"
[features] [features]
+15 -12
View File
@@ -1,13 +1,16 @@
[package] [package]
description = "Integration tests for Substrate network protocol" description = "Integration tests for Substrate network protocol"
name = "sc-network-test" name = "sc-network-test"
version = "0.8.0" version = "0.8.0-dev"
license = "GPL-3.0" license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
publish = false
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sc-network = { version = "0.8", path = "../" } sc-network = { version = "0.8.0-dev", path = "../" }
log = "0.4.8" log = "0.4.8"
parking_lot = "0.10.0" parking_lot = "0.10.0"
futures = "0.1.29" futures = "0.1.29"
@@ -15,16 +18,16 @@ futures03 = { package = "futures", version = "0.3.1", features = ["compat"] }
futures-timer = "3.0.1" futures-timer = "3.0.1"
rand = "0.7.2" rand = "0.7.2"
libp2p = { version = "0.16.1", default-features = false, features = ["libp2p-websocket"] } libp2p = { version = "0.16.1", default-features = false, features = ["libp2p-websocket"] }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" }
sc-client = { version = "0.8", path = "../../" } sc-client = { version = "0.8.0-dev", path = "../../" }
sc-client-api = { version = "2.0.0", path = "../../api" } sc-client-api = { version = "2.0.0-dev", path = "../../api" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../../primitives/blockchain" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sc-block-builder = { version = "0.8", path = "../../block-builder" } sc-block-builder = { version = "0.8.0-dev", path = "../../block-builder" }
sp-consensus-babe = { version = "0.8", path = "../../../primitives/consensus/babe" } sp-consensus-babe = { version = "0.8.0-dev", path = "../../../primitives/consensus/babe" }
env_logger = "0.7.0" env_logger = "0.7.0"
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" } substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../../test-utils/runtime/client" }
substrate-test-runtime = { version = "2.0.0", path = "../../../test-utils/runtime" } substrate-test-runtime = { version = "2.0.0-dev", path = "../../../test-utils/runtime" }
tempfile = "3.1.0" tempfile = "3.1.0"
tokio = "0.1.22" tokio = "0.1.22"
+14 -12
View File
@@ -1,41 +1,43 @@
[package] [package]
description = "Substrate offchain workers" description = "Substrate offchain workers"
name = "sc-offchain" name = "sc-offchain"
version = "2.0.0" version = "2.0.0-dev"
license = "GPL-3.0" license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
bytes = "0.5" bytes = "0.5"
sc-client-api = { version = "2.0.0", path = "../api" } sc-client-api = { version = "2.0.0-dev", path = "../api" }
sp-api = { version = "2.0.0", path = "../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../primitives/api" }
fnv = "1.0.6" fnv = "1.0.6"
futures = "0.3.1" futures = "0.3.1"
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 = "2.0.0-dev", path = "../../primitives/offchain" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
parking_lot = "0.10.0" parking_lot = "0.10.0"
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
rand = "0.7.2" rand = "0.7.2"
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../primitives/runtime" }
sc-network = { version = "0.8", path = "../network" } sc-network = { version = "0.8.0-dev", path = "../network" }
sc-keystore = { version = "2.0.0", path = "../keystore" } sc-keystore = { version = "2.0.0-dev", path = "../keystore" }
[target.'cfg(not(target_os = "unknown"))'.dependencies] [target.'cfg(not(target_os = "unknown"))'.dependencies]
hyper = "0.13.2" hyper = "0.13.2"
hyper-rustls = "0.19" hyper-rustls = "0.19"
[dev-dependencies] [dev-dependencies]
sc-client-db = { version = "0.8", default-features = true, path = "../db/" } sc-client-db = { version = "0.8.0-dev", default-features = true, path = "../db/" }
env_logger = "0.7.0" env_logger = "0.7.0"
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../test-utils/runtime/client" }
tokio = "0.2" tokio = "0.2"
sc-transaction-pool = { version = "2.0.0", path = "../../client/transaction-pool" } sc-transaction-pool = { version = "2.0.0-dev", path = "../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" } sp-transaction-pool = { version = "2.0.0-dev", path = "../../primitives/transaction-pool" }
[features] [features]
default = [] default = []
+2 -1
View File
@@ -3,9 +3,10 @@ description = "Connectivity manager based on reputation"
homepage = "http://parity.io" homepage = "http://parity.io"
license = "GPL-3.0" license = "GPL-3.0"
name = "sc-peerset" name = "sc-peerset"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
futures = "0.3.1" futures = "0.3.1"
+8 -6
View File
@@ -1,9 +1,11 @@
[package] [package]
name = "sc-rpc-api" name = "sc-rpc-api"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
@@ -15,10 +17,10 @@ jsonrpc-derive = "14.0.3"
jsonrpc-pubsub = "14.0.3" jsonrpc-pubsub = "14.0.3"
log = "0.4.8" log = "0.4.8"
parking_lot = "0.10.0" parking_lot = "0.10.0"
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sp-version = { version = "2.0.0", path = "../../primitives/version" } sp-version = { version = "2.0.0-dev", path = "../../primitives/version" }
sp-runtime = { path = "../../primitives/runtime" } sp-runtime = { path = "../../primitives/runtime" , version = "2.0.0-dev"}
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 = "2.0.0-dev", path = "../../primitives/transaction-pool" }
sp-rpc = { version = "2.0.0", path = "../../primitives/rpc" } sp-rpc = { version = "2.0.0-dev", path = "../../primitives/rpc" }
+4 -2
View File
@@ -1,9 +1,11 @@
[package] [package]
name = "sc-rpc-server" name = "sc-rpc-server"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
jsonrpc-core = "14.0.3" jsonrpc-core = "14.0.3"
@@ -11,7 +13,7 @@ pubsub = { package = "jsonrpc-pubsub", version = "14.0.3" }
log = "0.4.8" log = "0.4.8"
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 = "2.0.0-dev", path = "../../primitives/runtime" }
[target.'cfg(not(target_os = "unknown"))'.dependencies] [target.'cfg(not(target_os = "unknown"))'.dependencies]
http = { package = "jsonrpc-http-server", version = "14.0.3" } http = { package = "jsonrpc-http-server", version = "14.0.3" }
+22 -20
View File
@@ -1,41 +1,43 @@
[package] [package]
name = "sc-rpc" name = "sc-rpc"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sc-rpc-api = { version = "0.8", path = "../rpc-api" } sc-rpc-api = { version = "0.8.0-dev", path = "../rpc-api" }
sc-client-api = { version = "2.0.0", path = "../api" } sc-client-api = { version = "2.0.0-dev", path = "../api" }
sc-client = { version = "0.8", path = "../" } sc-client = { version = "0.8.0-dev", path = "../" }
sp-api = { version = "2.0.0", path = "../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../primitives/api" }
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
futures = { version = "0.3.1", features = ["compat"] } futures = { version = "0.3.1", features = ["compat"] }
jsonrpc-pubsub = "14.0.3" jsonrpc-pubsub = "14.0.3"
log = "0.4.8" log = "0.4.8"
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
rpc = { package = "jsonrpc-core", version = "14.0.3" } rpc = { package = "jsonrpc-core", version = "14.0.3" }
sp-version = { version = "2.0.0", path = "../../primitives/version" } sp-version = { version = "2.0.0-dev", 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 = "2.0.0-dev", path = "../../primitives/session" }
sp-offchain = { version = "2.0.0", path = "../../primitives/offchain" } sp-offchain = { version = "2.0.0-dev", path = "../../primitives/offchain" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../primitives/runtime" }
sp-rpc = { version = "2.0.0", path = "../../primitives/rpc" } sp-rpc = { version = "2.0.0-dev", path = "../../primitives/rpc" }
sp-state-machine = { version = "0.8", path = "../../primitives/state-machine" } sp-state-machine = { version = "0.8.0-dev", path = "../../primitives/state-machine" }
sc-executor = { version = "0.8", path = "../executor" } sc-executor = { version = "0.8.0-dev", path = "../executor" }
sc-keystore = { version = "2.0.0", path = "../keystore" } sc-keystore = { version = "2.0.0-dev", path = "../keystore" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" } sp-transaction-pool = { version = "2.0.0-dev", path = "../../primitives/transaction-pool" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../primitives/blockchain" }
hash-db = { version = "0.15.2", default-features = false } hash-db = { version = "0.15.2", default-features = false }
parking_lot = "0.10.0" parking_lot = "0.10.0"
[dev-dependencies] [dev-dependencies]
assert_matches = "1.3.0" assert_matches = "1.3.0"
futures01 = { package = "futures", version = "0.1.29" } futures01 = { package = "futures", version = "0.1.29" }
sc-network = { version = "0.8", path = "../network" } sc-network = { version = "0.8.0-dev", path = "../network" }
rustc-hex = "2.0.1" rustc-hex = "2.0.1"
sp-io = { version = "2.0.0", path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", path = "../../primitives/io" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } substrate-test-runtime-client = { version = "2.0.0-dev", 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 = "2.0.0-dev", path = "../transaction-pool" }
+30 -28
View File
@@ -1,9 +1,11 @@
[package] [package]
name = "sc-service" name = "sc-service"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[features] [features]
default = ["rocksdb"] default = ["rocksdb"]
@@ -30,37 +32,37 @@ serde = "1.0.101"
serde_json = "1.0.41" serde_json = "1.0.41"
sysinfo = "0.9.5" sysinfo = "0.9.5"
target_info = "0.1.0" target_info = "0.1.0"
sc-keystore = { version = "2.0.0", path = "../keystore" } sc-keystore = { version = "2.0.0-dev", path = "../keystore" }
sp-io = { version = "2.0.0", path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../primitives/runtime" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../primitives/blockchain" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sp-session = { version = "2.0.0", path = "../../primitives/session" } sp-session = { version = "2.0.0-dev", path = "../../primitives/session" }
sp-application-crypto = { version = "2.0.0", path = "../../primitives/application-crypto" } sp-application-crypto = { version = "2.0.0-dev", path = "../../primitives/application-crypto" }
sp-consensus = { version = "0.8", path = "../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../primitives/consensus/common" }
sc-network = { version = "0.8", path = "../network" } sc-network = { version = "0.8.0-dev", path = "../network" }
sc-chain-spec = { version = "2.0.0", path = "../chain-spec" } sc-chain-spec = { version = "2.0.0-dev", path = "../chain-spec" }
sc-client-api = { version = "2.0.0", path = "../api" } sc-client-api = { version = "2.0.0-dev", path = "../api" }
sc-client = { version = "0.8", path = "../" } sc-client = { version = "0.8.0-dev", path = "../" }
sp-api = { version = "2.0.0", path = "../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../primitives/api" }
sc-client-db = { version = "0.8", path = "../db" } sc-client-db = { version = "0.8.0-dev", path = "../db" }
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
sc-executor = { version = "0.8", path = "../executor" } sc-executor = { version = "0.8.0-dev", path = "../executor" }
sc-transaction-pool = { version = "2.0.0", path = "../transaction-pool" } sc-transaction-pool = { version = "2.0.0-dev", path = "../transaction-pool" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" } sp-transaction-pool = { version = "2.0.0-dev", path = "../../primitives/transaction-pool" }
sc-rpc-server = { version = "2.0.0", path = "../rpc-servers" } sc-rpc-server = { version = "2.0.0-dev", path = "../rpc-servers" }
sc-rpc = { version = "2.0.0", path = "../rpc" } sc-rpc = { version = "2.0.0-dev", path = "../rpc" }
sc-telemetry = { version = "2.0.0", path = "../telemetry" } sc-telemetry = { version = "2.0.0-dev", path = "../telemetry" }
sc-offchain = { version = "2.0.0", path = "../offchain" } sc-offchain = { version = "2.0.0-dev", path = "../offchain" }
parity-multiaddr = { package = "parity-multiaddr", version = "0.5.0" } parity-multiaddr = { package = "parity-multiaddr", version = "0.5.0" }
prometheus-exporter = { path = "../../utils/prometheus" } prometheus-exporter = { path = "../../utils/prometheus" , version = "0.8.0-dev"}
sc-tracing = { version = "2.0.0", path = "../tracing" } sc-tracing = { version = "2.0.0-dev", path = "../tracing" }
tracing = "0.1.10" tracing = "0.1.10"
parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] } parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] }
[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-dev", path = "../../test-utils/runtime/client" }
sp-consensus-babe = { version = "0.8", path = "../../primitives/consensus/babe" } sp-consensus-babe = { version = "0.8.0-dev", path = "../../primitives/consensus/babe" }
grandpa = { version = "0.8", package = "sc-finality-grandpa", path = "../finality-grandpa" } grandpa = { version = "0.8.0-dev", package = "sc-finality-grandpa", path = "../finality-grandpa" }
grandpa-primitives = { version = "2.0.0", package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" } grandpa-primitives = { version = "2.0.0-dev", package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" }
tokio = { version = "0.2", features = ["rt-core"] } tokio = { version = "0.2", features = ["rt-core"] }
+11 -8
View File
@@ -1,9 +1,12 @@
[package] [package]
name = "sc-service-test" name = "sc-service-test"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
publish = false
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
tempfile = "3.1.0" tempfile = "3.1.0"
@@ -13,10 +16,10 @@ log = "0.4.8"
env_logger = "0.7.0" env_logger = "0.7.0"
fdlimit = "0.1.1" fdlimit = "0.1.1"
futures = { version = "0.3.1", features = ["compat"] } futures = { version = "0.3.1", features = ["compat"] }
sc-service = { version = "0.8.0", default-features = false, path = "../../service" } sc-service = { version = "0.8.0-dev", default-features = false, path = "../../service" }
sc-network = { version = "0.8", path = "../../network" } sc-network = { version = "0.8.0-dev", path = "../../network" }
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" } sp-consensus = { version = "0.8.0-dev", path = "../../../primitives/consensus/common" }
sc-client = { version = "0.8", path = "../../" } sc-client = { version = "0.8.0-dev", path = "../../" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" } sp-transaction-pool = { version = "2.0.0-dev", path = "../../../primitives/transaction-pool" }
+4 -2
View File
@@ -1,14 +1,16 @@
[package] [package]
name = "sc-state-db" name = "sc-state-db"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
parking_lot = "0.10.0" parking_lot = "0.10.0"
log = "0.4.8" log = "0.4.8"
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
[dev-dependencies] [dev-dependencies]
+3 -1
View File
@@ -1,10 +1,12 @@
[package] [package]
name = "sc-telemetry" name = "sc-telemetry"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
description = "Telemetry utils" description = "Telemetry utils"
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
bytes = "0.5" bytes = "0.5"
+4 -2
View File
@@ -1,9 +1,11 @@
[package] [package]
name = "sc-tracing" name = "sc-tracing"
version = "2.0.0" version = "2.0.0-dev"
license = "GPL-3.0" license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
erased-serde = "0.3.9" erased-serde = "0.3.9"
@@ -14,7 +16,7 @@ serde_json = "1.0.41"
slog = { version = "2.5.2", features = ["nested-values"] } slog = { version = "2.5.2", features = ["nested-values"] }
tracing-core = "0.1.7" tracing-core = "0.1.7"
sc-telemetry = { version = "2.0.0", path = "../telemetry" } sc-telemetry = { version = "2.0.0-dev", path = "../telemetry" }
[dev-dependencies] [dev-dependencies]
tracing = "0.1.10" tracing = "0.1.10"
+13 -11
View File
@@ -1,9 +1,11 @@
[package] [package]
name = "sc-transaction-pool" name = "sc-transaction-pool"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
@@ -13,17 +15,17 @@ futures-diagnose = "1.0"
log = "0.4.8" log = "0.4.8"
parking_lot = "0.10.0" parking_lot = "0.10.0"
wasm-timer = "0.2" wasm-timer = "0.2"
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sp-api = { version = "2.0.0", path = "../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../primitives/api" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../primitives/runtime" }
sc-transaction-graph = { version = "2.0.0", path = "./graph" } sc-transaction-graph = { version = "2.0.0-dev", path = "./graph" }
sp-transaction-pool = { version = "2.0.0", path = "../../primitives/transaction-pool" } sp-transaction-pool = { version = "2.0.0-dev", path = "../../primitives/transaction-pool" }
sc-client-api = { version = "2.0.0", path = "../api" } sc-client-api = { version = "2.0.0-dev", path = "../api" }
sp-blockchain = { version = "2.0.0", path = "../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../primitives/blockchain" }
futures-timer = "2.0" futures-timer = "2.0"
parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] } parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] }
[dev-dependencies] [dev-dependencies]
sp-keyring = { version = "2.0.0", path = "../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", path = "../../primitives/keyring" }
substrate-test-runtime-transaction-pool = { version = "2.0.0", path = "../../test-utils/runtime/transaction-pool" } substrate-test-runtime-transaction-pool = { version = "2.0.0-dev", 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-dev", path = "../../test-utils/runtime/client" }
@@ -1,9 +1,11 @@
[package] [package]
name = "sc-transaction-graph" name = "sc-transaction-graph"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
derive_more = "0.99.2" derive_more = "0.99.2"
@@ -12,17 +14,17 @@ log = "0.4.8"
parking_lot = "0.10.0" parking_lot = "0.10.0"
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 = "2.0.0-dev", path = "../../../primitives/blockchain" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" } sp-transaction-pool = { version = "2.0.0-dev", path = "../../../primitives/transaction-pool" }
parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] } parity-util-mem = { version = "0.5.1", default-features = false, features = ["primitive-types"] }
linked-hash-map = "0.5.2" linked-hash-map = "0.5.2"
[dev-dependencies] [dev-dependencies]
assert_matches = "1.3.0" assert_matches = "1.3.0"
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
substrate-test-runtime = { version = "2.0.0", path = "../../../test-utils/runtime" } substrate-test-runtime = { version = "2.0.0-dev", path = "../../../test-utils/runtime" }
criterion = "0.3" criterion = "0.3"
[[bench]] [[bench]]
+9 -7
View File
@@ -1,24 +1,26 @@
[package] [package]
name = "pallet-assets" name = "pallet-assets"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
# 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 = "2.0.0-dev", 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 = "2.0.0-dev", default-features = false, path = "../support" }
# `system` module provides us with all sorts of useful stuff and macros depend on it being around. # `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 = "2.0.0-dev", default-features = false, path = "../system" }
[dev-dependencies] [dev-dependencies]
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sp-std = { version = "2.0.0", path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", path = "../../primitives/std" }
sp-io = { version = "2.0.0", path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", path = "../../primitives/io" }
[features] [features]
default = ["std"] default = ["std"]
+15 -13
View File
@@ -1,25 +1,27 @@
[package] [package]
name = "pallet-aura" name = "pallet-aura"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../../primitives/application-crypto" } sp-application-crypto = { version = "2.0.0-dev", default-features = false, path = "../../primitives/application-crypto" }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-inherents = { version = "2.0.0", default-features = false, path = "../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", default-features = false, path = "../../primitives/inherents" }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", 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 = "2.0.0-dev", default-features = false, path = "../session" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-io ={ path = "../../primitives/io", default-features = false } sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-dev"}
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
sp-consensus-aura = { path = "../../primitives/consensus/aura", default-features = false} sp-consensus-aura = { path = "../../primitives/consensus/aura", default-features = false, version = "0.8.0-dev"}
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
sp-timestamp = { version = "2.0.0", default-features = false, path = "../../primitives/timestamp" } sp-timestamp = { version = "2.0.0-dev", default-features = false, path = "../../primitives/timestamp" }
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../timestamp" } pallet-timestamp = { version = "2.0.0-dev", default-features = false, path = "../timestamp" }
[dev-dependencies] [dev-dependencies]
+13 -11
View File
@@ -1,25 +1,27 @@
[package] [package]
name = "pallet-authority-discovery" name = "pallet-authority-discovery"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sp-authority-discovery = { version = "2.0.0", default-features = false, path = "../../primitives/authority-discovery" } sp-authority-discovery = { version = "2.0.0-dev", 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 = "2.0.0-dev", default-features = false, path = "../../primitives/application-crypto" }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", 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 = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
pallet-session = { version = "2.0.0", features = ["historical" ], path = "../session", default-features = false } pallet-session = { version = "2.0.0-dev", features = ["historical" ], path = "../session", default-features = false }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
[dev-dependencies] [dev-dependencies]
sp-staking = { version = "2.0.0", default-features = false, path = "../../primitives/staking" } sp-staking = { version = "2.0.0-dev", default-features = false, path = "../../primitives/staking" }
[features] [features]
default = ["std"] default = ["std"]
+11 -9
View File
@@ -1,21 +1,23 @@
[package] [package]
name = "pallet-authorship" name = "pallet-authorship"
version = "2.0.0" version = "2.0.0-dev"
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"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-inherents = { version = "2.0.0", default-features = false, path = "../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", default-features = false, path = "../../primitives/inherents" }
sp-authorship = { version = "2.0.0", default-features = false, path = "../../primitives/authorship" } sp-authorship = { version = "2.0.0-dev", default-features = false, path = "../../primitives/authorship" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
sp-io ={ path = "../../primitives/io", default-features = false } sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-dev"}
impl-trait-for-tuples = "0.1.3" impl-trait-for-tuples = "0.1.3"
[features] [features]
+17 -15
View File
@@ -1,32 +1,34 @@
[package] [package]
name = "pallet-babe" name = "pallet-babe"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
hex-literal = "0.2.1" hex-literal = "0.2.1"
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
sp-inherents = { version = "2.0.0", default-features = false, path = "../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", default-features = false, path = "../../primitives/inherents" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0", default-features = false, path = "../../primitives/staking" } sp-staking = { version = "2.0.0-dev", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../timestamp" } pallet-timestamp = { version = "2.0.0-dev", default-features = false, path = "../timestamp" }
sp-timestamp = { version = "2.0.0", default-features = false, path = "../../primitives/timestamp" } sp-timestamp = { version = "2.0.0-dev", default-features = false, path = "../../primitives/timestamp" }
pallet-session = { version = "2.0.0", default-features = false, path = "../session" } pallet-session = { version = "2.0.0-dev", default-features = false, path = "../session" }
sp-consensus-babe = { version = "0.8", default-features = false, path = "../../primitives/consensus/babe" } sp-consensus-babe = { version = "0.8.0-dev", default-features = false, path = "../../primitives/consensus/babe" }
sp-io ={ path = "../../primitives/io", default-features = false } sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-dev"}
[dev-dependencies] [dev-dependencies]
lazy_static = "1.4.0" lazy_static = "1.4.0"
parking_lot = "0.10.0" parking_lot = "0.10.0"
sp-version = { version = "2.0.0", default-features = false, path = "../../primitives/version" } sp-version = { version = "2.0.0-dev", default-features = false, path = "../../primitives/version" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" } substrate-test-runtime = { version = "2.0.0-dev", path = "../../test-utils/runtime" }
[features] [features]
default = ["std"] default = ["std"]
+12 -10
View File
@@ -1,24 +1,26 @@
[package] [package]
name = "pallet-balances" name = "pallet-balances"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking" } frame-benchmarking = { version = "2.0.0-dev", default-features = false, path = "../benchmarking" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
[dev-dependencies] [dev-dependencies]
sp-io = { version = "2.0.0", path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", path = "../../primitives/io" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
pallet-transaction-payment = { version = "2.0.0", path = "../transaction-payment" } pallet-transaction-payment = { version = "2.0.0-dev", path = "../transaction-payment" }
[features] [features]
default = ["std"] default = ["std"]
+7 -5
View File
@@ -1,16 +1,18 @@
[package] [package]
name = "frame-benchmarking" name = "frame-benchmarking"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.1.2", default-features = false } codec = { package = "parity-scale-codec", version = "1.1.2", default-features = false }
sp-api = { version = "2.0.0", path = "../../primitives/api", default-features = false } sp-api = { version = "2.0.0-dev", path = "../../primitives/api", default-features = false }
sp-runtime-interface = { version = "2.0.0", path = "../../primitives/runtime-interface", default-features = false } sp-runtime-interface = { version = "2.0.0-dev", path = "../../primitives/runtime-interface", default-features = false }
sp-std = { version = "2.0.0", path = "../../primitives/std", default-features = false } sp-std = { version = "2.0.0-dev", path = "../../primitives/std", default-features = false }
sp-io ={ path = "../../primitives/io", default-features = false } sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-dev"}
[features] [features]
default = [ "std" ] default = [ "std" ]
+10 -8
View File
@@ -1,23 +1,25 @@
[package] [package]
name = "pallet-collective" name = "pallet-collective"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
[dev-dependencies] [dev-dependencies]
hex-literal = "0.2.1" hex-literal = "0.2.1"
pallet-balances = { version = "2.0.0", path = "../balances" } pallet-balances = { version = "2.0.0-dev", path = "../balances" }
[features] [features]
default = ["std"] default = ["std"]
+14 -12
View File
@@ -1,9 +1,11 @@
[package] [package]
name = "pallet-contracts" name = "pallet-contracts"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] } serde = { version = "1.0.101", optional = true, features = ["derive"] }
@@ -11,22 +13,22 @@ pwasm-utils = { version = "0.12.0", default-features = false }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
parity-wasm = { version = "0.41.0", default-features = false } parity-wasm = { version = "0.41.0", default-features = false }
wasmi-validation = { version = "0.3.0", default-features = false } wasmi-validation = { version = "0.3.0", default-features = false }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-sandbox = { version = "0.8.0", default-features = false, path = "../../primitives/sandbox" } sp-sandbox = { version = "0.8.0-dev", default-features = false, path = "../../primitives/sandbox" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
pallet-contracts-primitives = { version = "2.0.0", default-features = false, path = "common" } pallet-contracts-primitives = { version = "2.0.0-dev", default-features = false, path = "common" }
[dev-dependencies] [dev-dependencies]
wabt = "0.9.2" wabt = "0.9.2"
assert_matches = "1.3.0" assert_matches = "1.3.0"
hex-literal = "0.2.1" hex-literal = "0.2.1"
pallet-balances = { version = "2.0.0", path = "../balances" } pallet-balances = { version = "2.0.0-dev", path = "../balances" }
pallet-timestamp = { version = "2.0.0", path = "../timestamp" } pallet-timestamp = { version = "2.0.0-dev", path = "../timestamp" }
pallet-randomness-collective-flip = { version = "2.0.0", path = "../randomness-collective-flip" } pallet-randomness-collective-flip = { version = "2.0.0-dev", path = "../randomness-collective-flip" }
[features] [features]
default = ["std"] default = ["std"]
+6 -3
View File
@@ -1,14 +1,17 @@
[package] [package]
name = "pallet-contracts-primitives" name = "pallet-contracts-primitives"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
# This crate should not rely on any of the frame primitives. # This crate should not rely on any of the frame primitives.
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/runtime" }
[features] [features]
default = ["std"] default = ["std"]
+10 -8
View File
@@ -1,23 +1,25 @@
[package] [package]
name = "pallet-contracts-rpc" name = "pallet-contracts-rpc"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" } codec = { package = "parity-scale-codec", version = "1.0.0" }
jsonrpc-core = "14.0.3" jsonrpc-core = "14.0.3"
jsonrpc-core-client = "14.0.3" jsonrpc-core-client = "14.0.3"
jsonrpc-derive = "14.0.3" jsonrpc-derive = "14.0.3"
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" } sp-blockchain = { version = "2.0.0-dev", path = "../../../primitives/blockchain" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../../primitives/core" }
sp-rpc = { version = "2.0.0", path = "../../../primitives/rpc" } sp-rpc = { version = "2.0.0-dev", 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 = "2.0.0-dev", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0", path = "../../../primitives/api" } sp-api = { version = "2.0.0-dev", path = "../../../primitives/api" }
pallet-contracts-primitives = { version = "2.0.0", path = "../common" } pallet-contracts-primitives = { version = "2.0.0-dev", path = "../common" }
pallet-contracts-rpc-runtime-api = { version = "0.8.0", path = "./runtime-api" } pallet-contracts-rpc-runtime-api = { version = "0.8.0-dev", path = "./runtime-api" }
[dev-dependencies] [dev-dependencies]
serde_json = "1.0.41" serde_json = "1.0.41"
@@ -1,16 +1,18 @@
[package] [package]
name = "pallet-contracts-rpc-runtime-api" name = "pallet-contracts-rpc-runtime-api"
version = "0.8.0" version = "0.8.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sp-api = { version = "2.0.0", default-features = false, path = "../../../../primitives/api" } sp-api = { version = "2.0.0-dev", default-features = false, path = "../../../../primitives/api" }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0", default-features = false, path = "../../../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../../../primitives/std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", 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-dev", default-features = false, path = "../../common" }
[features] [features]
default = ["std"] default = ["std"]
+11 -9
View File
@@ -1,23 +1,25 @@
[package] [package]
name = "pallet-democracy" name = "pallet-democracy"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[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 = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
[dev-dependencies] [dev-dependencies]
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0", path = "../balances" } pallet-balances = { version = "2.0.0-dev", path = "../balances" }
sp-storage = { version = "2.0.0", path = "../../primitives/storage" } sp-storage = { version = "2.0.0-dev", path = "../../primitives/storage" }
hex-literal = "0.2.1" hex-literal = "0.2.1"
[features] [features]
+12 -10
View File
@@ -1,24 +1,26 @@
[package] [package]
name = "pallet-elections-phragmen" name = "pallet-elections-phragmen"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-phragmen = { version = "2.0.0", default-features = false, path = "../../primitives/phragmen" } sp-phragmen = { version = "2.0.0-dev", default-features = false, path = "../../primitives/phragmen" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
[dev-dependencies] [dev-dependencies]
sp-io = { version = "2.0.0", path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", path = "../../primitives/io" }
hex-literal = "0.2.1" hex-literal = "0.2.1"
pallet-balances = { version = "2.0.0", path = "../balances" } pallet-balances = { version = "2.0.0-dev", path = "../balances" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
substrate-test-utils = { version = "2.0.0", path = "../../test-utils" } substrate-test-utils = { version = "2.0.0-dev", path = "../../test-utils" }
serde = { version = "1.0.101" } serde = { version = "1.0.101" }
[features] [features]
+10 -8
View File
@@ -1,23 +1,25 @@
[package] [package]
name = "pallet-elections" name = "pallet-elections"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
[dev-dependencies] [dev-dependencies]
hex-literal = "0.2.1" hex-literal = "0.2.1"
pallet-balances = { version = "2.0.0", path = "../balances" } pallet-balances = { version = "2.0.0-dev", path = "../balances" }
[features] [features]
default = ["std"] default = ["std"]
+11 -9
View File
@@ -1,21 +1,23 @@
[package] [package]
name = "pallet-evm" name = "pallet-evm"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[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 = "1.0.0", default-features = false } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../timestamp" } pallet-timestamp = { version = "2.0.0-dev", default-features = false, path = "../timestamp" }
pallet-balances = { version = "2.0.0", default-features = false, path = "../balances" } pallet-balances = { version = "2.0.0-dev", default-features = false, path = "../balances" }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
primitive-types = { version = "0.6.2", default-features = false, features = ["rlp"] } primitive-types = { version = "0.6.2", default-features = false, features = ["rlp"] }
rlp = { version = "0.4", default-features = false } rlp = { version = "0.4", default-features = false }
evm = { version = "0.15", default-features = false } evm = { version = "0.15", default-features = false }
@@ -1,18 +1,21 @@
[package] [package]
name = "pallet-example-offchain-worker" name = "pallet-example-offchain-worker"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "Unlicense"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", 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 = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
serde_json = { version = "1.0.46", default-features = false, features = ["alloc"] } serde_json = { version = "1.0.46", default-features = false, features = ["alloc"] }
[features] [features]
+11 -9
View File
@@ -1,22 +1,24 @@
[package] [package]
name = "pallet-example" name = "pallet-example"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "Unlicense"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
pallet-balances = { version = "2.0.0", default-features = false, path = "../balances" } pallet-balances = { version = "2.0.0-dev", default-features = false, path = "../balances" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
[dev-dependencies] [dev-dependencies]
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
[features] [features]
default = ["std"] default = ["std"]
+12 -10
View File
@@ -1,25 +1,27 @@
[package] [package]
name = "frame-executive" name = "frame-executive"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
sp-io ={ path = "../../primitives/io", default-features = false } sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-dev"}
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
[dev-dependencies] [dev-dependencies]
hex-literal = "0.2.1" hex-literal = "0.2.1"
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
pallet-indices = { version = "2.0.0", path = "../indices" } pallet-indices = { version = "2.0.0-dev", path = "../indices" }
pallet-balances = { version = "2.0.0", path = "../balances" } pallet-balances = { version = "2.0.0-dev", path = "../balances" }
pallet-transaction-payment = { version = "2.0.0", path = "../transaction-payment" } pallet-transaction-payment = { version = "2.0.0-dev", path = "../transaction-payment" }
[features] [features]
default = ["std"] default = ["std"]
+11 -9
View File
@@ -1,24 +1,26 @@
[package] [package]
name = "pallet-finality-tracker" name = "pallet-finality-tracker"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", default-features = false, features = ["derive"] } serde = { version = "1.0.101", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
sp-inherents = { version = "2.0.0", default-features = false, path = "../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", default-features = false, path = "../../primitives/inherents" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-finality-tracker = { version = "2.0.0", default-features = false, path = "../../primitives/finality-tracker" } sp-finality-tracker = { version = "2.0.0-dev", default-features = false, path = "../../primitives/finality-tracker" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
impl-trait-for-tuples = "0.1.3" impl-trait-for-tuples = "0.1.3"
[dev-dependencies] [dev-dependencies]
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
[features] [features]
default = ["std"] default = ["std"]
+9 -7
View File
@@ -1,21 +1,23 @@
[package] [package]
name = "pallet-generic-asset" name = "pallet-generic-asset"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Centrality Developers <support@centrality.ai>"] authors = ["Centrality Developers <support@centrality.ai>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
[dev-dependencies] [dev-dependencies]
sp-io ={ version = "2.0.0", path = "../../primitives/io" } sp-io ={ version = "2.0.0-dev", path = "../../primitives/io" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
[features] [features]
default = ["std"] default = ["std"]
+13 -11
View File
@@ -1,25 +1,27 @@
[package] [package]
name = "pallet-grandpa" name = "pallet-grandpa"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[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 = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
sp-finality-grandpa = { version = "2.0.0", default-features = false, path = "../../primitives/finality-grandpa" } sp-finality-grandpa = { version = "2.0.0-dev", default-features = false, path = "../../primitives/finality-grandpa" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0", default-features = false, path = "../../primitives/staking" } sp-staking = { version = "2.0.0-dev", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
pallet-session = { version = "2.0.0", default-features = false, path = "../session" } pallet-session = { version = "2.0.0-dev", default-features = false, path = "../session" }
pallet-finality-tracker = { version = "2.0.0", default-features = false, path = "../finality-tracker" } pallet-finality-tracker = { version = "2.0.0-dev", default-features = false, path = "../finality-tracker" }
[dev-dependencies] [dev-dependencies]
sp-io ={ version = "2.0.0", path = "../../primitives/io" } sp-io ={ version = "2.0.0-dev", path = "../../primitives/io" }
[features] [features]
default = ["std"] default = ["std"]
+11 -9
View File
@@ -1,24 +1,26 @@
[package] [package]
name = "pallet-identity" name = "pallet-identity"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.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 = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking" } frame-benchmarking = { version = "2.0.0-dev", default-features = false, path = "../benchmarking" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
[dev-dependencies] [dev-dependencies]
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0", path = "../balances" } pallet-balances = { version = "2.0.0-dev", path = "../balances" }
[features] [features]
default = ["std"] default = ["std"]
+13 -11
View File
@@ -1,23 +1,25 @@
[package] [package]
name = "pallet-im-online" name = "pallet-im-online"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../../primitives/application-crypto" } sp-application-crypto = { version = "2.0.0-dev", default-features = false, path = "../../primitives/application-crypto" }
pallet-authorship = { version = "2.0.0", default-features = false, path = "../authorship" } pallet-authorship = { version = "2.0.0-dev", default-features = false, path = "../authorship" }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", 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 = "2.0.0-dev", default-features = false, path = "../session" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0", default-features = false, path = "../../primitives/staking" } sp-staking = { version = "2.0.0-dev", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
[features] [features]
default = ["std", "pallet-session/historical"] default = ["std", "pallet-session/historical"]
+11 -9
View File
@@ -1,23 +1,25 @@
[package] [package]
name = "pallet-indices" name = "pallet-indices"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-keyring = { version = "2.0.0", optional = true, path = "../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", optional = true, path = "../../primitives/keyring" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
[dev-dependencies] [dev-dependencies]
pallet-balances = { version = "2.0.0", path = "../balances" } pallet-balances = { version = "2.0.0-dev", path = "../balances" }
[features] [features]
default = ["std"] default = ["std"]
+9 -7
View File
@@ -1,21 +1,23 @@
[package] [package]
name = "pallet-membership" name = "pallet-membership"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
[dev-dependencies] [dev-dependencies]
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
[features] [features]
default = ["std"] default = ["std"]
+5 -3
View File
@@ -1,15 +1,17 @@
[package] [package]
name = "frame-metadata" name = "frame-metadata"
version = "11.0.0" version = "11.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.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 = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
[features] [features]
default = ["std"] default = ["std"]
+10 -8
View File
@@ -1,22 +1,24 @@
[package] [package]
name = "pallet-nicks" name = "pallet-nicks"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
[dev-dependencies] [dev-dependencies]
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0", path = "../balances" } pallet-balances = { version = "2.0.0-dev", path = "../balances" }
[features] [features]
default = ["std"] default = ["std"]
+11 -9
View File
@@ -1,23 +1,25 @@
[package] [package]
name = "pallet-offences" name = "pallet-offences"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
pallet-balances = { version = "2.0.0", default-features = false, path = "../balances" } pallet-balances = { version = "2.0.0-dev", default-features = false, path = "../balances" }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", 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 = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0", default-features = false, path = "../../primitives/staking" } sp-staking = { version = "2.0.0-dev", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
[dev-dependencies] [dev-dependencies]
sp-io = { version = "2.0.0", path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", path = "../../primitives/io" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
[features] [features]
default = ["std"] default = ["std"]
@@ -1,21 +1,23 @@
[package] [package]
name = "pallet-randomness-collective-flip" name = "pallet-randomness-collective-flip"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
safe-mix = { version = "1.0", default-features = false } safe-mix = { version = "1.0", default-features = false }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
[dev-dependencies] [dev-dependencies]
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sp-io = { version = "2.0.0", path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", path = "../../primitives/io" }
[features] [features]
default = ["std"] default = ["std"]
+10 -8
View File
@@ -1,23 +1,25 @@
[package] [package]
name = "pallet-recovery" name = "pallet-recovery"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.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 = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
[dev-dependencies] [dev-dependencies]
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0", path = "../balances" } pallet-balances = { version = "2.0.0-dev", path = "../balances" }
[features] [features]
default = ["std"] default = ["std"]
+10 -8
View File
@@ -1,22 +1,24 @@
[package] [package]
name = "pallet-scored-pool" name = "pallet-scored-pool"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
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 = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
[dev-dependencies] [dev-dependencies]
pallet-balances = { version = "2.0.0", path = "../balances" } pallet-balances = { version = "2.0.0-dev", path = "../balances" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
[features] [features]
default = ["std"] default = ["std"]
+13 -11
View File
@@ -1,26 +1,28 @@
[package] [package]
name = "pallet-session" name = "pallet-session"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0", default-features = false, path = "../../primitives/staking" } sp-staking = { version = "2.0.0-dev", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../timestamp" } pallet-timestamp = { version = "2.0.0-dev", default-features = false, path = "../timestamp" }
sp-trie = { optional = true, path = "../../primitives/trie", default-features = false } sp-trie = { optional = true, path = "../../primitives/trie", default-features = false , version = "2.0.0-dev"}
sp-io ={ path = "../../primitives/io", default-features = false } sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-dev"}
impl-trait-for-tuples = "0.1.3" impl-trait-for-tuples = "0.1.3"
[dev-dependencies] [dev-dependencies]
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
sp-application-crypto = { version = "2.0.0", path = "../../primitives/application-crypto" } sp-application-crypto = { version = "2.0.0-dev", path = "../../primitives/application-crypto" }
lazy_static = "1.4.0" lazy_static = "1.4.0"
[features] [features]
+10 -8
View File
@@ -1,23 +1,25 @@
[package] [package]
name = "pallet-society" name = "pallet-society"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-io ={ path = "../../primitives/io", default-features = false } sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-dev"}
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
rand_chacha = { version = "0.2", default-features = false } rand_chacha = { version = "0.2", default-features = false }
[dev-dependencies] [dev-dependencies]
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0", path = "../balances" } pallet-balances = { version = "2.0.0-dev", path = "../balances" }
[features] [features]
default = ["std"] default = ["std"]
+18 -16
View File
@@ -1,30 +1,32 @@
[package] [package]
name = "pallet-staking" name = "pallet-staking"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-keyring = { version = "2.0.0", optional = true, path = "../../primitives/keyring" } sp-keyring = { version = "2.0.0-dev", optional = true, path = "../../primitives/keyring" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-phragmen = { version = "2.0.0", default-features = false, path = "../../primitives/phragmen" } sp-phragmen = { version = "2.0.0-dev", default-features = false, path = "../../primitives/phragmen" }
sp-io ={ path = "../../primitives/io", default-features = false } sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-dev"}
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0", default-features = false, path = "../../primitives/staking" } sp-staking = { version = "2.0.0-dev", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
pallet-session = { version = "2.0.0", features = ["historical"], path = "../session", default-features = false } pallet-session = { version = "2.0.0-dev", features = ["historical"], path = "../session", default-features = false }
pallet-authorship = { version = "2.0.0", default-features = false, path = "../authorship" } pallet-authorship = { version = "2.0.0-dev", default-features = false, path = "../authorship" }
[dev-dependencies] [dev-dependencies]
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0", path = "../balances" } pallet-balances = { version = "2.0.0-dev", path = "../balances" }
pallet-timestamp = { version = "2.0.0", path = "../timestamp" } pallet-timestamp = { version = "2.0.0-dev", path = "../timestamp" }
pallet-staking-reward-curve = { version = "2.0.0", path = "../staking/reward-curve" } pallet-staking-reward-curve = { version = "2.0.0-dev", path = "../staking/reward-curve" }
substrate-test-utils = { version = "2.0.0", path = "../../test-utils" } substrate-test-utils = { version = "2.0.0-dev", path = "../../test-utils" }
[features] [features]
migrate = [] migrate = []
@@ -1,9 +1,11 @@
[package] [package]
name = "pallet-staking-reward-curve" name = "pallet-staking-reward-curve"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[lib] [lib]
proc-macro = true proc-macro = true
@@ -15,4 +17,4 @@ proc-macro2 = "1.0.6"
proc-macro-crate = "0.1.4" proc-macro-crate = "0.1.4"
[dev-dependencies] [dev-dependencies]
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
+9 -7
View File
@@ -1,21 +1,23 @@
[package] [package]
name = "pallet-sudo" name = "pallet-sudo"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
[dev-dependencies] [dev-dependencies]
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
[features] [features]
default = ["std"] default = ["std"]
+13 -11
View File
@@ -1,32 +1,34 @@
[package] [package]
name = "frame-support" name = "frame-support"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
log = "0.4" log = "0.4"
serde = { version = "1.0.101", optional = true, features = ["derive"] } serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false, features = ["derive"] }
frame-metadata = { version = "11.0.0", default-features = false, path = "../metadata" } frame-metadata = { version = "11.0.0-dev", default-features = false, path = "../metadata" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io ={ path = "../../primitives/io", default-features = false } sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-dev"}
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
sp-arithmetic = { version = "2.0.0", default-features = false, path = "../../primitives/arithmetic" } sp-arithmetic = { version = "2.0.0-dev", default-features = false, path = "../../primitives/arithmetic" }
sp-inherents = { version = "2.0.0", default-features = false, path = "../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", default-features = false, path = "../../primitives/inherents" }
frame-support-procedural = { version = "2.0.0", path = "./procedural" } frame-support-procedural = { version = "2.0.0-dev", path = "./procedural" }
paste = "0.1.6" paste = "0.1.6"
once_cell = { version = "1", default-features = false, optional = true } once_cell = { version = "1", default-features = false, optional = true }
sp-state-machine = { version = "0.8", optional = true, path = "../../primitives/state-machine" } sp-state-machine = { version = "0.8.0-dev", optional = true, path = "../../primitives/state-machine" }
bitmask = { version = "0.5.0", default-features = false } bitmask = { version = "0.5.0", default-features = false }
impl-trait-for-tuples = "0.1.3" impl-trait-for-tuples = "0.1.3"
tracing = { version = "0.1.10", optional = true } tracing = { version = "0.1.10", optional = true }
[dev-dependencies] [dev-dependencies]
pretty_assertions = "0.6.1" pretty_assertions = "0.6.1"
frame-system = { version = "2.0.0", path = "../system" } frame-system = { version = "2.0.0-dev", path = "../system" }
[features] [features]
default = ["std"] default = ["std"]
@@ -1,15 +1,17 @@
[package] [package]
name = "frame-support-procedural" name = "frame-support-procedural"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[lib] [lib]
proc-macro = true proc-macro = true
[dependencies] [dependencies]
frame-support-procedural-tools = { version = "2.0.0", path = "./tools" } frame-support-procedural-tools = { version = "2.0.0-dev", path = "./tools" }
proc-macro2 = "1.0.6" proc-macro2 = "1.0.6"
quote = "1.0.2" quote = "1.0.2"
syn = { version = "1.0.7", features = ["full"] } syn = { version = "1.0.7", features = ["full"] }
@@ -1,12 +1,14 @@
[package] [package]
name = "frame-support-procedural-tools" name = "frame-support-procedural-tools"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
frame-support-procedural-tools-derive = { version = "2.0.0", path = "./derive" } frame-support-procedural-tools-derive = { version = "2.0.0-dev", path = "./derive" }
proc-macro2 = "1.0.6" proc-macro2 = "1.0.6"
quote = "1.0.2" quote = "1.0.2"
syn = { version = "1.0.7", features = ["full", "visit"] } syn = { version = "1.0.7", features = ["full", "visit"] }
@@ -1,9 +1,11 @@
[package] [package]
name = "frame-support-procedural-tools-derive" name = "frame-support-procedural-tools-derive"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[lib] [lib]
proc-macro = true proc-macro = true
+10 -7
View File
@@ -1,19 +1,22 @@
[package] [package]
name = "frame-support-test" name = "frame-support-test"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
publish = false
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", default-features = false, features = ["derive"] } serde = { version = "1.0.101", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-io ={ path = "../../../primitives/io", default-features = false } sp-io ={ path = "../../../primitives/io", default-features = false , version = "2.0.0-dev"}
sp-state-machine = { version = "0.8", optional = true, path = "../../../primitives/state-machine" } sp-state-machine = { version = "0.8.0-dev", optional = true, path = "../../../primitives/state-machine" }
frame-support = { version = "2.0.0", default-features = false, path = "../" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../" }
sp-inherents = { version = "2.0.0", default-features = false, path = "../../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/inherents" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/runtime" }
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../../primitives/core" }
trybuild = "1.0.17" trybuild = "1.0.17"
pretty_assertions = "0.6.1" pretty_assertions = "0.6.1"
+11 -9
View File
@@ -1,25 +1,27 @@
[package] [package]
name = "frame-system" name = "frame-system"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[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 = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io ={ path = "../../primitives/io", default-features = false } sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-dev"}
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-version = { version = "2.0.0", default-features = false, path = "../../primitives/version" } sp-version = { version = "2.0.0-dev", default-features = false, path = "../../primitives/version" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
impl-trait-for-tuples = "0.1.3" impl-trait-for-tuples = "0.1.3"
[dev-dependencies] [dev-dependencies]
criterion = "0.2.11" criterion = "0.2.11"
sp-externalities = { version = "0.8.0", path = "../../primitives/externalities" } sp-externalities = { version = "0.8.0-dev", path = "../../primitives/externalities" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" } substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../test-utils/runtime/client" }
[features] [features]
default = ["std"] default = ["std"]
@@ -1,12 +1,14 @@
[package] [package]
name = "frame-system-rpc-runtime-api" name = "frame-system-rpc-runtime-api"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
sp-api = { version = "2.0.0", default-features = false, path = "../../../../primitives/api" } sp-api = { version = "2.0.0-dev", default-features = false, path = "../../../../primitives/api" }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
[features] [features]
+13 -11
View File
@@ -1,26 +1,28 @@
[package] [package]
name = "pallet-timestamp" name = "pallet-timestamp"
version = "2.0.0" version = "2.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"] authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018" edition = "2018"
license = "GPL-3.0" license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies] [dependencies]
serde = { version = "1.0.101", optional = true } serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" } sp-std = { version = "2.0.0-dev", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" } sp-io = { version = "2.0.0-dev", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" } sp-runtime = { version = "2.0.0-dev", default-features = false, path = "../../primitives/runtime" }
sp-inherents = { version = "2.0.0", default-features = false, path = "../../primitives/inherents" } sp-inherents = { version = "2.0.0-dev", default-features = false, path = "../../primitives/inherents" }
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../benchmarking" } frame-benchmarking = { version = "2.0.0-dev", default-features = false, path = "../benchmarking" }
frame-support = { version = "2.0.0", default-features = false, path = "../support" } frame-support = { version = "2.0.0-dev", default-features = false, path = "../support" }
frame-system = { version = "2.0.0", default-features = false, path = "../system" } frame-system = { version = "2.0.0-dev", default-features = false, path = "../system" }
sp-timestamp = { version = "2.0.0", default-features = false, path = "../../primitives/timestamp" } sp-timestamp = { version = "2.0.0-dev", default-features = false, path = "../../primitives/timestamp" }
impl-trait-for-tuples = "0.1.3" impl-trait-for-tuples = "0.1.3"
[dev-dependencies] [dev-dependencies]
sp-io ={ version = "2.0.0", path = "../../primitives/io" } sp-io ={ version = "2.0.0-dev", path = "../../primitives/io" }
sp-core = { version = "2.0.0", path = "../../primitives/core" } sp-core = { version = "2.0.0-dev", path = "../../primitives/core" }
[features] [features]
default = ["std"] default = ["std"]

Some files were not shown because too many files have changed in this diff Show More