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
+12 -12
View File
@@ -7,18 +7,18 @@ edition = "2018"
[dependencies]
derive_more = "0.99.2"
codec = { package = "parity-scale-codec", version = "1.0.0" }
sp-io = { path = "../../primitives/io" }
sp-core = { path = "../../primitives/core" }
sp-trie = { path = "../../primitives/trie" }
sp-serializer = { path = "../../primitives/serializer" }
sp-version = { path = "../../primitives/version" }
sp-panic-handler = { path = "../../primitives/panic-handler" }
sp-io = { version = "2.0.0", path = "../../primitives/io" }
sp-core = { version = "2.0.0", path = "../../primitives/core" }
sp-trie = { version = "2.0.0", path = "../../primitives/trie" }
sp-serializer = { version = "2.0.0", path = "../../primitives/serializer" }
sp-version = { version = "2.0.0", path = "../../primitives/version" }
sp-panic-handler = { version = "2.0.0", path = "../../primitives/panic-handler" }
wasmi = "0.6.2"
parity-wasm = "0.41.0"
lazy_static = "1.4.0"
sp-wasm-interface = { path = "../../primitives/wasm-interface" }
sp-runtime-interface = { path = "../../primitives/runtime-interface" }
sp-externalities = { path = "../../primitives/externalities" }
sp-wasm-interface = { version = "2.0.0", path = "../../primitives/wasm-interface" }
sp-runtime-interface = { version = "2.0.0", path = "../../primitives/runtime-interface" }
sp-externalities = { version = "2.0.0", path = "../../primitives/externalities" }
parking_lot = "0.9.0"
log = "0.4.8"
libsecp256k1 = "0.3.2"
@@ -36,9 +36,9 @@ wasmtime-runtime = { version = "0.8", optional = true }
assert_matches = "1.3.0"
wabt = "0.9.2"
hex-literal = "0.2.1"
sc-runtime-test = { path = "runtime-test" }
substrate-test-runtime = { path = "../../test-utils/runtime" }
sp-state-machine = { path = "../../primitives/state-machine" }
sc-runtime-test = { version = "2.0.0", path = "runtime-test" }
substrate-test-runtime = { version = "2.0.0", path = "../../test-utils/runtime" }
sp-state-machine = { version = "2.0.0", path = "../../primitives/state-machine" }
test-case = "0.3.3"
[features]
@@ -6,14 +6,14 @@ edition = "2018"
build = "build.rs"
[dependencies]
sp-std = { path = "../../../primitives/std", default-features = false }
sp-io = { path = "../../../primitives/io", default-features = false }
sp-sandbox = { path = "../../../primitives/sandbox", default-features = false }
sp-core = { path = "../../../primitives/core", default-features = false }
sp-runtime = { path = "../../../primitives/runtime", default-features = false }
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../../primitives/io" }
sp-sandbox = { version = "2.0.0", default-features = false, path = "../../../primitives/sandbox" }
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" }
[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 = [ "std" ]