Setting versions locally towards 2.0 release (#4404)

* clean up cargo.toml syntax

* bumping versions to 2.0

* bump networking to 0.8

* move consensus down to 0.8

* bump consensus pallets to 0.8.0, too

* Upping babe and aura pallets

* add remaining, missing version definitions

* missed some
This commit is contained in:
Benjamin Kampmann
2019-12-17 15:05:50 +01:00
committed by Gavin Wood
parent 33fa445db0
commit 9200bfa997
131 changed files with 1115 additions and 1115 deletions
+26 -26
View File
@@ -6,44 +6,44 @@ edition = "2018"
build = "build.rs"
[dependencies]
sp-application-crypto = { path = "../../primitives/application-crypto", default-features = false }
sp-consensus-aura = { path = "../../primitives/consensus/aura", default-features = false }
sp-consensus-babe = { path = "../../primitives/consensus/babe", default-features = false }
sp-block-builder = { path = "../../primitives/block-builder", default-features = false }
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../../primitives/application-crypto" }
sp-consensus-aura = { version = "0.8", default-features = false, path = "../../primitives/consensus/aura" }
sp-consensus-babe = { version = "0.8", default-features = false, path = "../../primitives/consensus/babe" }
sp-block-builder = { version = "2.0.0", default-features = false, path = "../../primitives/block-builder" }
cfg-if = "0.1.10"
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
frame-executive = { path = "../../frame/executive", default-features = false }
sp-inherents = { path = "../../primitives/inherents", default-features = false }
sp-keyring = { path = "../../primitives/keyring", optional = true }
frame-executive = { version = "2.0.0", default-features = false, path = "../../frame/executive" }
sp-inherents = { version = "2.0.0", default-features = false, path = "../../primitives/inherents" }
sp-keyring = { version = "2.0.0", optional = true, path = "../../primitives/keyring" }
log = { version = "0.4.8", optional = true }
memory-db = { version = "0.15.2", default-features = false }
sp-offchain = { path = "../../primitives/offchain", default-features = false}
sp-core = { path = "../../primitives/core", default-features = false }
sp-std = { path = "../../primitives/std", default-features = false }
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
sp-runtime-interface = { path = "../../primitives/runtime-interface", default-features = false}
sp-io = { path = "../../primitives/io", default-features = false }
frame-support = { path = "../../frame/support", default-features = false }
sp-version = { path = "../../primitives/version", default-features = false }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0", default-features = false, path = "../../frame/support" }
sp-version = { version = "2.0.0", default-features = false, path = "../../primitives/version" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-session = { path = "../../primitives/session", default-features = false }
sp-api = { path = "../../primitives/api", default-features = false }
sp-runtime = { path = "../../primitives/runtime", default-features = false }
pallet-babe = { path = "../../frame/babe", default-features = false }
frame-system = { path = "../../frame/system", default-features = false }
frame-system-rpc-runtime-api = { path = "../../frame/system/rpc/runtime-api", default-features = false }
pallet-timestamp = { path = "../../frame/timestamp", default-features = false }
sc-client = { path = "../../client", optional = true }
sp-trie = { path = "../../primitives/trie", default-features = false }
sp-transaction-pool = { path = "../../primitives/transaction-pool", default-features = false }
sp-session = { version = "2.0.0", default-features = false, path = "../../primitives/session" }
sp-api = { version = "2.0.0", default-features = false, path = "../../primitives/api" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../primitives/runtime" }
pallet-babe = { version = "2.0.0", default-features = false, path = "../../frame/babe" }
frame-system = { version = "2.0.0", default-features = false, path = "../../frame/system" }
frame-system-rpc-runtime-api = { version = "2.0.0", default-features = false, path = "../../frame/system/rpc/runtime-api" }
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../../frame/timestamp" }
sc-client = { version = "2.0.0", optional = true, path = "../../client" }
sp-trie = { version = "2.0.0", default-features = false, path = "../../primitives/trie" }
sp-transaction-pool = { version = "2.0.0", default-features = false, path = "../../primitives/transaction-pool" }
trie-db = { version = "0.16.0", default-features = false }
[dev-dependencies]
sc-executor = { path = "../../client/executor" }
substrate-test-runtime-client = { path = "./client" }
sp-state-machine = { path = "../../primitives/state-machine" }
sc-executor = { version = "2.0.0", path = "../../client/executor" }
substrate-test-runtime-client = { version = "2.0.0", path = "./client" }
sp-state-machine = { version = "2.0.0", path = "../../primitives/state-machine" }
[build-dependencies]
wasm-builder-runner = { package = "substrate-wasm-builder-runner", path = "../../utils/wasm-builder-runner", version = "1.0.4" }
wasm-builder-runner = { version = "1.0.4", package = "substrate-wasm-builder-runner", path = "../../utils/wasm-builder-runner" }
[features]
default = [
@@ -5,13 +5,13 @@ authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
[dependencies]
sc-block-builder = { path = "../../../client/block-builder" }
substrate-test-client = { path = "../../client" }
sp-core = { path = "../../../primitives/core" }
substrate-test-runtime = { path = "../../runtime" }
sp-runtime = { path = "../../../primitives/runtime" }
sp-blockchain = { path = "../../../primitives/blockchain" }
sc-block-builder = { version = "2.0.0", path = "../../../client/block-builder" }
substrate-test-client = { version = "2.0.0", path = "../../client" }
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
substrate-test-runtime = { version = "2.0.0", path = "../../runtime" }
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
sp-blockchain = { version = "2.0.0", path = "../../../primitives/blockchain" }
codec = { package = "parity-scale-codec", version = "1.0.0" }
sc-client-api = { path = "../../../client/api" }
sc-client = { path = "../../../client/" }
sc-client-api = { version = "2.0.0", path = "../../../client/api" }
sc-client = { version = "2.0.0", path = "../../../client/" }
futures = "0.3.1"