Releasing 2.0 – two dot 😮 (#7182)

Tagging the release of substrate 2.0


[ci: skip-checks]
This commit is contained in:
Benjamin Kampmann
2020-09-22 19:47:38 +02:00
committed by GitHub
parent cbf1a282b5
commit ecdc94420e
190 changed files with 1977 additions and 1920 deletions
+4 -4
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-allocator"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,9 +14,9 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-std = { version = "2.0.0-rc6", path = "../std", default-features = false }
sp-core = { version = "2.0.0-rc6", path = "../core", default-features = false }
sp-wasm-interface = { version = "2.0.0-rc6", path = "../wasm-interface", default-features = false }
sp-std = { version = "2.0.0", path = "../std", default-features = false }
sp-core = { version = "2.0.0", path = "../core", default-features = false }
sp-wasm-interface = { version = "2.0.0", path = "../wasm-interface", default-features = false }
log = { version = "0.4.8", optional = true }
derive_more = { version = "0.99.2", optional = true }
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-api"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,16 +14,16 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
sp-api-proc-macro = { version = "2.0.0-rc6", path = "proc-macro" }
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../core" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../runtime" }
sp-version = { version = "2.0.0-rc6", default-features = false, path = "../version" }
sp-state-machine = { version = "0.8.0-rc6", optional = true, path = "../../primitives/state-machine" }
sp-api-proc-macro = { version = "2.0.0", path = "proc-macro" }
sp-core = { version = "2.0.0", default-features = false, path = "../core" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../runtime" }
sp-version = { version = "2.0.0", default-features = false, path = "../version" }
sp-state-machine = { version = "0.8.0", optional = true, path = "../../primitives/state-machine" }
hash-db = { version = "0.15.2", optional = true }
[dev-dependencies]
sp-test-primitives = { version = "2.0.0-rc6", path = "../test-primitives" }
sp-test-primitives = { version = "2.0.0", path = "../test-primitives" }
[features]
default = [ "std" ]
@@ -1,6 +1,6 @@
[package]
name = "sp-api-proc-macro"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
+11 -11
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-api-test"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,22 +12,22 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "2.0.0-rc6", path = "../" }
substrate-test-runtime-client = { version = "2.0.0-rc6", path = "../../../test-utils/runtime/client" }
sp-version = { version = "2.0.0-rc6", path = "../../version" }
sp-runtime = { version = "2.0.0-rc6", path = "../../runtime" }
sp-blockchain = { version = "2.0.0-rc6", path = "../../blockchain" }
sp-consensus = { version = "0.8.0-rc6", path = "../../../primitives/consensus/common" }
sc-block-builder = { version = "0.8.0-rc6", path = "../../../client/block-builder" }
sp-api = { version = "2.0.0", path = "../" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
sp-version = { version = "2.0.0", path = "../../version" }
sp-runtime = { version = "2.0.0", path = "../../runtime" }
sp-blockchain = { version = "2.0.0", path = "../../blockchain" }
sp-consensus = { version = "0.8.0", path = "../../../primitives/consensus/common" }
sc-block-builder = { version = "0.8.0", path = "../../../client/block-builder" }
codec = { package = "parity-scale-codec", version = "1.3.1" }
sp-state-machine = { version = "0.8.0-rc6", path = "../../../primitives/state-machine" }
sp-state-machine = { version = "0.8.0", path = "../../../primitives/state-machine" }
trybuild = "1.0.17"
rustversion = "1.0.0"
[dev-dependencies]
criterion = "0.3.0"
substrate-test-runtime-client = { version = "2.0.0-rc6", path = "../../../test-utils/runtime/client" }
sp-core = { version = "2.0.0-rc6", path = "../../core" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
sp-core = { version = "2.0.0", path = "../../core" }
[[bench]]
name = "bench"
@@ -1,6 +1,6 @@
[package]
name = "sp-application-crypto"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
description = "Provides facilities for generating application specific crypto wrapper types."
@@ -15,11 +15,11 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../core" }
sp-core = { version = "2.0.0", default-features = false, path = "../core" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-io = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/io" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../primitives/io" }
[features]
default = [ "std" ]
@@ -1,6 +1,6 @@
[package]
name = "sp-application-crypto-test"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
description = "Integration tests for application-crypto"
@@ -13,8 +13,8 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../../core" }
substrate-test-runtime-client = { version = "2.0.0-rc6", path = "../../../test-utils/runtime/client" }
sp-runtime = { version = "2.0.0-rc6", path = "../../runtime" }
sp-api = { version = "2.0.0-rc6", path = "../../api" }
sp-application-crypto = { version = "2.0.0-rc6", path = "../" }
sp-core = { version = "2.0.0", default-features = false, path = "../../core" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
sp-runtime = { version = "2.0.0", path = "../../runtime" }
sp-api = { version = "2.0.0", path = "../../api" }
sp-application-crypto = { version = "2.0.0", path = "../" }
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-arithmetic"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -18,9 +18,9 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
integer-sqrt = "0.1.2"
num-traits = { version = "0.2.8", default-features = false }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-debug-derive = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/debug-derive" }
sp-debug-derive = { version = "2.0.0", default-features = false, path = "../../primitives/debug-derive" }
[dev-dependencies]
rand = "0.7.2"
@@ -1,6 +1,6 @@
[package]
name = "sp-arithmetic-fuzzer"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,7 +14,7 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-arithmetic = { version = "2.0.0-rc6", path = ".." }
sp-arithmetic = { version = "2.0.0", path = ".." }
honggfuzz = "0.5.49"
primitive-types = "0.7.0"
num-bigint = "0.2"
@@ -1,6 +1,6 @@
[package]
name = "sp-authority-discovery"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Authority discovery primitives"
edition = "2018"
@@ -13,11 +13,11 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-rc6", default-features = false, path = "../application-crypto" }
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../application-crypto" }
codec = { package = "parity-scale-codec", default-features = false, version = "1.3.1" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-api = { version = "2.0.0-rc6", default-features = false, path = "../api" }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../runtime" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
sp-api = { version = "2.0.0", default-features = false, path = "../api" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../runtime" }
[features]
default = ["std"]
+4 -4
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-authorship"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Authorship primitives"
edition = "2018"
@@ -13,9 +13,9 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-inherents = { version = "2.0.0-rc6", default-features = false, path = "../inherents" }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../runtime" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-inherents = { version = "2.0.0", default-features = false, path = "../inherents" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
[features]
@@ -1,6 +1,6 @@
[package]
name = "sp-block-builder"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -13,11 +13,11 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../runtime" }
sp-api = { version = "2.0.0-rc6", default-features = false, path = "../api" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../runtime" }
sp-api = { version = "2.0.0", default-features = false, path = "../api" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
sp-inherents = { version = "2.0.0-rc6", default-features = false, path = "../inherents" }
sp-inherents = { version = "2.0.0", default-features = false, path = "../inherents" }
[features]
default = [ "std" ]
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-blockchain"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -19,8 +19,8 @@ lru = "0.4.0"
parking_lot = "0.10.0"
derive_more = "0.99.2"
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-consensus = { version = "0.8.0-rc6", path = "../consensus/common" }
sp-runtime = { version = "2.0.0-rc6", path = "../runtime" }
sp-block-builder = { version = "2.0.0-rc6", path = "../block-builder" }
sp-state-machine = { version = "0.8.0-rc6", path = "../state-machine" }
sp-database = { version = "2.0.0-rc6", path = "../database" }
sp-consensus = { version = "0.8.0", path = "../consensus/common" }
sp-runtime = { version = "2.0.0", path = "../runtime" }
sp-block-builder = { version = "2.0.0", path = "../block-builder" }
sp-state-machine = { version = "0.8.0", path = "../state-machine" }
sp-database = { version = "2.0.0", path = "../database" }
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-chain-spec"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus-aura"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Primitives for Aura consensus"
edition = "2018"
@@ -13,13 +13,13 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-rc6", default-features = false, path = "../../application-crypto" }
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../../application-crypto" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../../std" }
sp-api = { version = "2.0.0-rc6", default-features = false, path = "../../api" }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../../runtime" }
sp-inherents = { version = "2.0.0-rc6", default-features = false, path = "../../inherents" }
sp-timestamp = { version = "2.0.0-rc6", default-features = false, path = "../../timestamp" }
sp-std = { version = "2.0.0", default-features = false, path = "../../std" }
sp-api = { version = "2.0.0", default-features = false, path = "../../api" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../runtime" }
sp-inherents = { version = "2.0.0", default-features = false, path = "../../inherents" }
sp-timestamp = { version = "2.0.0", default-features = false, path = "../../timestamp" }
[features]
default = ["std"]
+11 -11
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus-babe"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Primitives for BABE consensus"
edition = "2018"
@@ -13,18 +13,18 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-rc6", default-features = false, path = "../../application-crypto" }
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../../application-crypto" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
merlin = { version = "2.0", default-features = false }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../../std" }
sp-api = { version = "2.0.0-rc6", default-features = false, path = "../../api" }
sp-consensus = { version = "0.8.0-rc6", optional = true, path = "../common" }
sp-consensus-slots = { version = "0.8.0-rc6", default-features = false, path = "../slots" }
sp-consensus-vrf = { version = "0.8.0-rc6", path = "../vrf", default-features = false }
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../../core" }
sp-inherents = { version = "2.0.0-rc6", default-features = false, path = "../../inherents" }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../../runtime" }
sp-timestamp = { version = "2.0.0-rc6", default-features = false, path = "../../timestamp" }
sp-std = { version = "2.0.0", default-features = false, path = "../../std" }
sp-api = { version = "2.0.0", default-features = false, path = "../../api" }
sp-consensus = { version = "0.8.0", optional = true, path = "../common" }
sp-consensus-slots = { version = "0.8.0", default-features = false, path = "../slots" }
sp-consensus-vrf = { version = "0.8.0", path = "../vrf", default-features = false }
sp-core = { version = "2.0.0", default-features = false, path = "../../core" }
sp-inherents = { version = "2.0.0", default-features = false, path = "../../inherents" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../runtime" }
sp-timestamp = { version = "2.0.0", default-features = false, path = "../../timestamp" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -18,25 +18,25 @@ targets = ["x86_64-unknown-linux-gnu"]
derive_more = "0.99.2"
libp2p = { version = "0.28.1", default-features = false }
log = "0.4.8"
sp-core = { path= "../../core", version = "2.0.0-rc6"}
sp-inherents = { version = "2.0.0-rc6", path = "../../inherents" }
sp-state-machine = { version = "0.8.0-rc6", path = "../../../primitives/state-machine" }
sp-core = { path= "../../core", version = "2.0.0"}
sp-inherents = { version = "2.0.0", path = "../../inherents" }
sp-state-machine = { version = "0.8.0", path = "../../../primitives/state-machine" }
futures = { version = "0.3.1", features = ["thread-pool"] }
futures-timer = "3.0.1"
sp-std = { version = "2.0.0-rc6", path = "../../std" }
sp-version = { version = "2.0.0-rc6", path = "../../version" }
sp-runtime = { version = "2.0.0-rc6", path = "../../runtime" }
sp-utils = { version = "2.0.0-rc6", path = "../../utils" }
sp-trie = { version = "2.0.0-rc6", path = "../../trie" }
sp-api = { version = "2.0.0-rc6", path = "../../api" }
sp-std = { version = "2.0.0", path = "../../std" }
sp-version = { version = "2.0.0", path = "../../version" }
sp-runtime = { version = "2.0.0", path = "../../runtime" }
sp-utils = { version = "2.0.0", path = "../../utils" }
sp-trie = { version = "2.0.0", path = "../../trie" }
sp-api = { version = "2.0.0", path = "../../api" }
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
parking_lot = "0.10.0"
serde = { version = "1.0", features = ["derive"] }
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0-rc6"}
prometheus-endpoint = { package = "substrate-prometheus-endpoint", path = "../../../utils/prometheus", version = "0.8.0"}
wasm-timer = "0.2.4"
[dev-dependencies]
sp-test-primitives = { version = "2.0.0-rc6", path = "../../test-primitives" }
sp-test-primitives = { version = "2.0.0", path = "../../test-primitives" }
[features]
default = []
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus-pow"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Primitives for Aura consensus"
edition = "2018"
@@ -13,10 +13,10 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "2.0.0-rc6", default-features = false, path = "../../api" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../../std" }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../../runtime" }
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../../core" }
sp-api = { version = "2.0.0", default-features = false, path = "../../api" }
sp-std = { version = "2.0.0", default-features = false, path = "../../std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../runtime" }
sp-core = { version = "2.0.0", default-features = false, path = "../../core" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
[features]
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus-slots"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Primitives for slots-based consensus"
edition = "2018"
@@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../../runtime" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../runtime" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus-vrf"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Primitives for VRF based consensus"
edition = "2018"
@@ -15,9 +15,9 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { version = "1.0.0", package = "parity-scale-codec", default-features = false }
schnorrkel = { version = "0.9.1", features = ["preaudit_deprecated", "u64_backend"], default-features = false }
sp-std = { version = "2.0.0-rc6", path = "../../std", default-features = false }
sp-core = { version = "2.0.0-rc6", path = "../../core", default-features = false }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../../runtime" }
sp-std = { version = "2.0.0", path = "../../std", default-features = false }
sp-core = { version = "2.0.0", path = "../../core", default-features = false }
sp-runtime = { version = "2.0.0", default-features = false, path = "../../runtime" }
[features]
default = ["std"]
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-core"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
derive_more = "0.99.2"
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
log = { version = "0.4.8", default-features = false }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
@@ -34,9 +34,9 @@ zeroize = { version = "1.0.0", default-features = false }
secrecy = { version = "0.6.0", default-features = false }
lazy_static = { version = "1.4.0", default-features = false, optional = true }
parking_lot = { version = "0.10.0", optional = true }
sp-debug-derive = { version = "2.0.0-rc6", path = "../debug-derive" }
sp-externalities = { version = "0.8.0-rc6", optional = true, path = "../externalities" }
sp-storage = { version = "2.0.0-rc6", default-features = false, path = "../storage" }
sp-debug-derive = { version = "2.0.0", path = "../debug-derive" }
sp-externalities = { version = "0.8.0", optional = true, path = "../externalities" }
sp-storage = { version = "2.0.0", default-features = false, path = "../storage" }
parity-util-mem = { version = "0.7.0", default-features = false, features = ["primitive-types"] }
futures = { version = "0.3.1", optional = true }
dyn-clonable = { version = "0.9.0", optional = true }
@@ -52,10 +52,10 @@ twox-hash = { version = "1.5.0", default-features = false, optional = true }
libsecp256k1 = { version = "0.3.2", default-features = false, features = ["hmac"], optional = true }
merlin = { version = "2.0", default-features = false, optional = true }
sp-runtime-interface = { version = "2.0.0-rc6", default-features = false, path = "../runtime-interface" }
sp-runtime-interface = { version = "2.0.0", default-features = false, path = "../runtime-interface" }
[dev-dependencies]
sp-serializer = { version = "2.0.0-rc6", path = "../serializer" }
sp-serializer = { version = "2.0.0", path = "../serializer" }
pretty_assertions = "0.6.1"
hex-literal = "0.3.1"
rand = "0.7.2"
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-database"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-debug-derive"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -1,6 +1,6 @@
[package]
name = "sp-externalities"
version = "0.8.0-rc6"
version = "0.8.0"
license = "Apache-2.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -14,8 +14,8 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-storage = { version = "2.0.0-rc6", path = "../storage", default-features = false }
sp-std = { version = "2.0.0-rc6", path = "../std", default-features = false }
sp-storage = { version = "2.0.0", path = "../storage", default-features = false }
sp-std = { version = "2.0.0", path = "../std", default-features = false }
environmental = { version = "1.1.1", default-features = false }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
@@ -1,6 +1,6 @@
[package]
name = "sp-finality-grandpa"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,15 +15,15 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-rc6", default-features = false, path = "../application-crypto" }
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../application-crypto" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
grandpa = { package = "finality-grandpa", version = "0.12.3", default-features = false, features = ["derive-codec"] }
log = { version = "0.4.8", optional = true }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-api = { version = "2.0.0-rc6", default-features = false, path = "../api" }
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../core" }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../runtime" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-api = { version = "2.0.0", default-features = false, path = "../api" }
sp-core = { version = "2.0.0", default-features = false, path = "../core" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "sp-finality-tracker"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,8 +14,8 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
sp-inherents = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/inherents" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../../primitives/std" }
sp-inherents = { version = "2.0.0", default-features = false, path = "../../primitives/inherents" }
sp-std = { version = "2.0.0", default-features = false, path = "../../primitives/std" }
[features]
default = ["std"]
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-inherents"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -16,8 +16,8 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
parking_lot = { version = "0.10.0", optional = true }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../core" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
sp-core = { version = "2.0.0", default-features = false, path = "../core" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
derive_more = { version = "0.99.2", optional = true }
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-io"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -17,15 +17,15 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
hash-db = { version = "0.15.2", default-features = false }
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../core" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-core = { version = "2.0.0", default-features = false, path = "../core" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
libsecp256k1 = { version = "0.3.4", optional = true }
sp-state-machine = { version = "0.8.0-rc6", optional = true, path = "../../primitives/state-machine" }
sp-wasm-interface = { version = "2.0.0-rc6", path = "../../primitives/wasm-interface", default-features = false }
sp-runtime-interface = { version = "2.0.0-rc6", default-features = false, path = "../runtime-interface" }
sp-trie = { version = "2.0.0-rc6", optional = true, path = "../../primitives/trie" }
sp-externalities = { version = "0.8.0-rc6", optional = true, path = "../externalities" }
sp-tracing = { version = "2.0.0-rc6", default-features = false, path = "../tracing" }
sp-state-machine = { version = "0.8.0", optional = true, path = "../../primitives/state-machine" }
sp-wasm-interface = { version = "2.0.0", path = "../../primitives/wasm-interface", default-features = false }
sp-runtime-interface = { version = "2.0.0", default-features = false, path = "../runtime-interface" }
sp-trie = { version = "2.0.0", optional = true, path = "../../primitives/trie" }
sp-externalities = { version = "0.8.0", optional = true, path = "../externalities" }
sp-tracing = { version = "2.0.0", default-features = false, path = "../tracing" }
log = { version = "0.4.8", optional = true }
futures = { version = "0.3.1", features = ["thread-pool"], optional = true }
parking_lot = { version = "0.10.0", optional = true }
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-keyring"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-core = { version = "2.0.0-rc6", path = "../core" }
sp-runtime = { version = "2.0.0-rc6", path = "../runtime" }
sp-core = { version = "2.0.0", path = "../core" }
sp-runtime = { version = "2.0.0", path = "../runtime" }
lazy_static = "1.4.0"
strum = { version = "0.16.0", features = ["derive"] }
@@ -1,6 +1,6 @@
[package]
name = "sp-npos-elections"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,14 +15,14 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-npos-elections-compact = { version = "2.0.0-rc6", path = "./compact" }
sp-arithmetic = { version = "2.0.0-rc6", default-features = false, path = "../arithmetic" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
sp-npos-elections-compact = { version = "2.0.0", path = "./compact" }
sp-arithmetic = { version = "2.0.0", default-features = false, path = "../arithmetic" }
[dev-dependencies]
substrate-test-utils = { version = "2.0.0-rc6", path = "../../test-utils" }
substrate-test-utils = { version = "2.0.0", path = "../../test-utils" }
rand = "0.7.3"
sp-runtime = { version = "2.0.0-rc6", path = "../../primitives/runtime" }
sp-runtime = { version = "2.0.0", path = "../../primitives/runtime" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "sp-npos-elections-compact"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,9 +14,9 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-npos-elections = { version = "2.0.0-rc6", path = ".." }
sp-std = { version = "2.0.0-rc6", path = "../../std" }
sp-runtime = { version = "2.0.0-rc6", path = "../../runtime" }
sp-npos-elections = { version = "2.0.0", path = ".." }
sp-std = { version = "2.0.0", path = "../../std" }
sp-runtime = { version = "2.0.0", path = "../../runtime" }
honggfuzz = "0.5"
rand = { version = "0.7.3", features = ["std", "small_rng"] }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
+5 -5
View File
@@ -1,7 +1,7 @@
[package]
description = "Substrate offchain workers primitives"
name = "sp-offchain"
version = "2.0.0-rc6"
version = "2.0.0"
license = "Apache-2.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -13,12 +13,12 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../core" }
sp-api = { version = "2.0.0-rc6", default-features = false, path = "../api" }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../runtime" }
sp-core = { version = "2.0.0", default-features = false, path = "../core" }
sp-api = { version = "2.0.0", default-features = false, path = "../api" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../runtime" }
[dev-dependencies]
sp-state-machine = { version = "0.8.0-rc6", default-features = false, path = "../state-machine" }
sp-state-machine = { version = "0.8.0", default-features = false, path = "../state-machine" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "sp-panic-handler"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-rpc"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,7 +14,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", features = ["derive"] }
sp-core = { version = "2.0.0-rc6", path = "../core" }
sp-core = { version = "2.0.0", path = "../core" }
[dev-dependencies]
serde_json = "1.0.41"
@@ -1,6 +1,6 @@
[package]
name = "sp-runtime-interface"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,21 +14,21 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-wasm-interface = { version = "2.0.0-rc6", path = "../wasm-interface", default-features = false }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-tracing = { version = "2.0.0-rc6", default-features = false, path = "../tracing" }
sp-runtime-interface-proc-macro = { version = "2.0.0-rc6", path = "proc-macro" }
sp-externalities = { version = "0.8.0-rc6", optional = true, path = "../externalities" }
sp-wasm-interface = { version = "2.0.0", path = "../wasm-interface", default-features = false }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
sp-tracing = { version = "2.0.0", default-features = false, path = "../tracing" }
sp-runtime-interface-proc-macro = { version = "2.0.0", path = "proc-macro" }
sp-externalities = { version = "0.8.0", optional = true, path = "../externalities" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
static_assertions = "1.0.0"
primitive-types = { version = "0.7.0", default-features = false }
sp-storage = { version = "2.0.0-rc6", default-features = false, path = "../storage" }
sp-storage = { version = "2.0.0", default-features = false, path = "../storage" }
[dev-dependencies]
sp-runtime-interface-test-wasm = { version = "2.0.0-rc6", path = "test-wasm" }
sp-state-machine = { version = "0.8.0-rc6", path = "../../primitives/state-machine" }
sp-core = { version = "2.0.0-rc6", path = "../core" }
sp-io = { version = "2.0.0-rc6", path = "../io" }
sp-runtime-interface-test-wasm = { version = "2.0.0", path = "test-wasm" }
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
sp-core = { version = "2.0.0", path = "../core" }
sp-io = { version = "2.0.0", path = "../io" }
rustversion = "1.0.0"
trybuild = "1.0.23"
@@ -1,6 +1,6 @@
[package]
name = "sp-runtime-interface-proc-macro"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -1,6 +1,6 @@
[package]
name = "sp-runtime-interface-test-wasm-deprecated"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
build = "build.rs"
@@ -13,10 +13,10 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-runtime-interface = { version = "2.0.0-rc6", default-features = false, path = "../" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../../std" }
sp-io = { version = "2.0.0-rc6", default-features = false, path = "../../io" }
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../../core" }
sp-runtime-interface = { version = "2.0.0", default-features = false, path = "../" }
sp-std = { version = "2.0.0", default-features = false, path = "../../std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../io" }
sp-core = { version = "2.0.0", default-features = false, path = "../../core" }
[build-dependencies]
wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }
@@ -1,6 +1,6 @@
[package]
name = "sp-runtime-interface-test-wasm"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
build = "build.rs"
@@ -13,10 +13,10 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-runtime-interface = { version = "2.0.0-rc6", default-features = false, path = "../" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../../std" }
sp-io = { version = "2.0.0-rc6", default-features = false, path = "../../io" }
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../../core" }
sp-runtime-interface = { version = "2.0.0", default-features = false, path = "../" }
sp-std = { version = "2.0.0", default-features = false, path = "../../std" }
sp-io = { version = "2.0.0", default-features = false, path = "../../io" }
sp-core = { version = "2.0.0", default-features = false, path = "../../core" }
[build-dependencies]
wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }
@@ -1,6 +1,6 @@
[package]
name = "sp-runtime-interface-test"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,13 +12,13 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-runtime-interface = { version = "2.0.0-rc6", path = "../" }
sc-executor = { version = "0.8.0-rc6", path = "../../../client/executor" }
sp-runtime-interface-test-wasm = { version = "2.0.0-rc6", path = "../test-wasm" }
sp-runtime-interface-test-wasm-deprecated = { version = "2.0.0-rc6", path = "../test-wasm-deprecated" }
sp-state-machine = { version = "0.8.0-rc6", path = "../../../primitives/state-machine" }
sp-runtime = { version = "2.0.0-rc6", path = "../../runtime" }
sp-core = { version = "2.0.0-rc6", path = "../../core" }
sp-io = { version = "2.0.0-rc6", path = "../../io" }
sp-runtime-interface = { version = "2.0.0", path = "../" }
sc-executor = { version = "0.8.0", path = "../../../client/executor" }
sp-runtime-interface-test-wasm = { version = "2.0.0", path = "../test-wasm" }
sp-runtime-interface-test-wasm-deprecated = { version = "2.0.0", path = "../test-wasm-deprecated" }
sp-state-machine = { version = "0.8.0", path = "../../../primitives/state-machine" }
sp-runtime = { version = "2.0.0", path = "../../runtime" }
sp-core = { version = "2.0.0", path = "../../core" }
sp-io = { version = "2.0.0", path = "../../io" }
tracing = "0.1.19"
tracing-core = "0.1.15"
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-runtime"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -17,16 +17,16 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../core" }
sp-application-crypto = { version = "2.0.0-rc6", default-features = false, path = "../application-crypto" }
sp-arithmetic = { version = "2.0.0-rc6", default-features = false, path = "../arithmetic" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-io = { version = "2.0.0-rc6", default-features = false, path = "../io" }
sp-core = { version = "2.0.0", default-features = false, path = "../core" }
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../application-crypto" }
sp-arithmetic = { version = "2.0.0", default-features = false, path = "../arithmetic" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
sp-io = { version = "2.0.0", default-features = false, path = "../io" }
log = { version = "0.4.8", optional = true }
paste = "0.1.6"
rand = { version = "0.7.2", optional = true }
impl-trait-for-tuples = "0.1.3"
sp-inherents = { version = "2.0.0-rc6", default-features = false, path = "../inherents" }
sp-inherents = { version = "2.0.0", default-features = false, path = "../inherents" }
parity-util-mem = { version = "0.7.0", default-features = false, features = ["primitive-types"] }
hash256-std-hasher = { version = "0.15.2", default-features = false }
either = { version = "1.5", default-features = false }
@@ -34,7 +34,7 @@ either = { version = "1.5", default-features = false }
[dev-dependencies]
serde_json = "1.0.41"
rand = "0.7.2"
sp-state-machine = { version = "0.8.0-rc6", path = "../../primitives/state-machine" }
sp-state-machine = { version = "0.8.0", path = "../../primitives/state-machine" }
[features]
bench = []
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-sandbox"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,10 +14,10 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
wasmi = { version = "0.6.2", optional = true }
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../core" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-io = { version = "2.0.0-rc6", default-features = false, path = "../io" }
sp-wasm-interface = { version = "2.0.0-rc6", default-features = false, path = "../wasm-interface" }
sp-core = { version = "2.0.0", default-features = false, path = "../core" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
sp-io = { version = "2.0.0", default-features = false, path = "../io" }
sp-wasm-interface = { version = "2.0.0", default-features = false, path = "../wasm-interface" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
[dev-dependencies]
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-serializer"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-session"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,11 +14,11 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-api = { version = "2.0.0-rc6", default-features = false, path = "../api" }
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../core" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-staking = { version = "2.0.0-rc6", default-features = false, path = "../staking" }
sp-runtime = { version = "2.0.0-rc6", optional = true, path = "../runtime" }
sp-api = { version = "2.0.0", default-features = false, path = "../api" }
sp-core = { version = "2.0.0", default-features = false, path = "../core" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
sp-staking = { version = "2.0.0", default-features = false, path = "../staking" }
sp-runtime = { version = "2.0.0", optional = true, path = "../runtime" }
[features]
default = [ "std" ]
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-staking"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,8 +14,8 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../runtime" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "sp-state-machine"
version = "0.8.0-rc6"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate State Machine"
edition = "2018"
@@ -19,19 +19,19 @@ parking_lot = { version = "0.10.0", optional = true }
hash-db = { version = "0.15.2", default-features = false }
trie-db = { version = "0.22.0", default-features = false }
trie-root = { version = "0.16.0", default-features = false }
sp-trie = { version = "2.0.0-rc6", path = "../trie", default-features = false }
sp-core = { version = "2.0.0-rc6", path = "../core", default-features = false }
sp-panic-handler = { version = "2.0.0-rc6", path = "../panic-handler", optional = true }
sp-trie = { version = "2.0.0", path = "../trie", default-features = false }
sp-core = { version = "2.0.0", path = "../core", default-features = false }
sp-panic-handler = { version = "2.0.0", path = "../panic-handler", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
num-traits = { version = "0.2.8", default-features = false }
rand = { version = "0.7.2", optional = true }
sp-externalities = { version = "0.8.0-rc6", path = "../externalities", default-features = false }
sp-externalities = { version = "0.8.0", path = "../externalities", default-features = false }
smallvec = "1.4.1"
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
[dev-dependencies]
hex-literal = "0.3.1"
sp-runtime = { version = "2.0.0-rc6", path = "../runtime" }
sp-runtime = { version = "2.0.0", path = "../runtime" }
pretty_assertions = "0.6.1"
[features]
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-std"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-storage"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
description = "Storage related primitives"
@@ -14,11 +14,11 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
impl-serde = { version = "0.3.1", optional = true }
ref-cast = "1.0.0"
sp-debug-derive = { version = "2.0.0-rc6", path = "../debug-derive" }
sp-debug-derive = { version = "2.0.0", path = "../debug-derive" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
[features]
@@ -1,6 +1,6 @@
[package]
name = "sp-test-primitives"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,11 +12,11 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-rc6", default-features = false, path = "../application-crypto" }
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../application-crypto" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../core" }
sp-core = { version = "2.0.0", default-features = false, path = "../core" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../runtime" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../runtime" }
parity-util-mem = { version = "0.7.0", default-features = false, features = ["primitive-types"] }
[features]
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-timestamp"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -13,11 +13,11 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "2.0.0-rc6", default-features = false, path = "../api" }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../runtime" }
sp-api = { version = "2.0.0", default-features = false, path = "../api" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../runtime" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-inherents = { version = "2.0.0-rc6", default-features = false, path = "../inherents" }
sp-inherents = { version = "2.0.0", default-features = false, path = "../inherents" }
impl-trait-for-tuples = "0.1.3"
wasm-timer = { version = "0.2", optional = true }
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-tracing"
version = "2.0.0-rc6"
version = "2.0.0"
license = "Apache-2.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -18,7 +18,7 @@ features = ["with-tracing"]
targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"]
[dependencies]
sp-std = { version = "2.0.0-rc6", path = "../std", default-features = false}
sp-std = { version = "2.0.0", path = "../std", default-features = false}
codec = { version = "1.3.1", package = "parity-scale-codec", default-features = false, features = ["derive"]}
tracing = { version = "0.1.19", default-features = false }
tracing-core = { version = "0.1.16", default-features = false }
@@ -1,6 +1,6 @@
[package]
name = "sp-transaction-pool"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -19,9 +19,9 @@ derive_more = { version = "0.99.2", optional = true }
futures = { version = "0.3.1", optional = true }
log = { version = "0.4.8", optional = true }
serde = { version = "1.0.101", features = ["derive"], optional = true}
sp-api = { version = "2.0.0-rc6", default-features = false, path = "../api" }
sp-blockchain = { version = "2.0.0-rc6", optional = true, path = "../blockchain" }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../runtime" }
sp-api = { version = "2.0.0", default-features = false, path = "../api" }
sp-blockchain = { version = "2.0.0", optional = true, path = "../blockchain" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../runtime" }
[features]
default = [ "std" ]
+4 -4
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-trie"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Patricia trie stuff using a parity-scale-codec node format"
repository = "https://github.com/paritytech/substrate/"
@@ -19,19 +19,19 @@ harness = false
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
hash-db = { version = "0.15.2", default-features = false }
trie-db = { version = "0.22.0", default-features = false }
trie-root = { version = "0.16.0", default-features = false }
memory-db = { version = "0.24.0", default-features = false }
sp-core = { version = "2.0.0-rc6", default-features = false, path = "../core" }
sp-core = { version = "2.0.0", default-features = false, path = "../core" }
[dev-dependencies]
trie-bench = "0.25.0"
trie-standardmap = "0.15.2"
criterion = "0.3.3"
hex-literal = "0.3.1"
sp-runtime = { version = "2.0.0-rc6", path = "../runtime" }
sp-runtime = { version = "2.0.0", path = "../runtime" }
[features]
default = ["std"]
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-utils"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-version"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -18,8 +18,8 @@ targets = ["x86_64-unknown-linux-gnu"]
impl-serde = { version = "0.3.1", optional = true }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc6", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-rc6", default-features = false, path = "../runtime" }
sp-std = { version = "2.0.0", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0", default-features = false, path = "../runtime" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "sp-wasm-interface"
version = "2.0.0-rc6"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -16,7 +16,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
wasmi = { version = "0.6.2", optional = true }
impl-trait-for-tuples = "0.1.2"
sp-std = { version = "2.0.0-rc6", path = "../std", default-features = false }
sp-std = { version = "2.0.0", path = "../std", default-features = false }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
[features]