Prepping release of alpha.6 (#5629)

* bumping version

* cargo update

* adding changelog
This commit is contained in:
Benjamin Kampmann
2020-04-14 21:41:49 +02:00
committed by GitHub
parent 889a9763dd
commit 51f9bb3c0e
177 changed files with 2307 additions and 2271 deletions
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-allocator"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,10 +9,13 @@ repository = "https://github.com/paritytech/substrate/"
description = "Collection of allocator implementations."
documentation = "https://docs.rs/sp-allocator"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-std = { version = "2.0.0-alpha.5", path = "../std", default-features = false }
sp-core = { version = "2.0.0-alpha.5", path = "../core", default-features = false }
sp-wasm-interface = { version = "2.0.0-alpha.5", path = "../wasm-interface", default-features = false }
sp-std = { version = "2.0.0-alpha.6", path = "../std", default-features = false }
sp-core = { version = "2.0.0-alpha.6", path = "../core", default-features = false }
sp-wasm-interface = { version = "2.0.0-alpha.6", path = "../wasm-interface", default-features = false }
log = { version = "0.4.8", optional = true }
derive_more = { version = "0.99.2", optional = true }
@@ -25,6 +28,3 @@ std = [
"log",
"derive_more",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-api"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,14 +8,17 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "Substrate runtime api primitives"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
sp-api-proc-macro = { version = "2.0.0-alpha.5", path = "proc-macro" }
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../core" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../runtime" }
sp-version = { version = "2.0.0-alpha.5", default-features = false, path = "../version" }
sp-state-machine = { version = "0.8.0-alpha.5", optional = true, path = "../../primitives/state-machine" }
sp-api-proc-macro = { version = "2.0.0-alpha.6", path = "proc-macro" }
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../core" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime" }
sp-version = { version = "2.0.0-alpha.6", default-features = false, path = "../version" }
sp-state-machine = { version = "0.8.0-alpha.6", optional = true, path = "../../primitives/state-machine" }
hash-db = { version = "0.15.2", optional = true }
[dev-dependencies]
@@ -32,6 +35,3 @@ std = [
"sp-version/std",
"hash-db",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-api-proc-macro"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,6 +9,9 @@ repository = "https://github.com/paritytech/substrate/"
description = "Macros for declaring and implementing runtime apis."
documentation = "https://docs.rs/sp-api-proc-macro"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[lib]
proc-macro = true
@@ -24,6 +27,3 @@ proc-macro-crate = "0.1.4"
[features]
default = [ "std" ]
std = []
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+11 -11
View File
@@ -8,23 +8,26 @@ publish = false
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "2.0.0-alpha.5", path = "../" }
sp-api = { version = "2.0.0-alpha.6", path = "../" }
substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../../test-utils/runtime/client" }
sp-version = { version = "2.0.0-alpha.5", path = "../../version" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../runtime" }
sp-blockchain = { version = "2.0.0-alpha.5", path = "../../blockchain" }
sp-consensus = { version = "0.8.0-alpha.5", path = "../../../primitives/consensus/common" }
sc-block-builder = { version = "0.8.0-alpha.5", path = "../../../client/block-builder" }
sp-version = { version = "2.0.0-alpha.6", path = "../../version" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../runtime" }
sp-blockchain = { version = "2.0.0-alpha.6", path = "../../blockchain" }
sp-consensus = { version = "0.8.0-alpha.6", path = "../../../primitives/consensus/common" }
sc-block-builder = { version = "0.8.0-alpha.6", path = "../../../client/block-builder" }
codec = { package = "parity-scale-codec", version = "1.3.0" }
sp-state-machine = { version = "0.8.0-alpha.5", path = "../../../primitives/state-machine" }
sp-state-machine = { version = "0.8.0-alpha.6", 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-dev", path = "../../../test-utils/runtime/client" }
sp-core = { version = "2.0.0-alpha.5", path = "../../core" }
sp-core = { version = "2.0.0-alpha.6", path = "../../core" }
[[bench]]
name = "bench"
@@ -34,6 +37,3 @@ harness = false
[features]
default = [ "std" ]
std = []
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-application-crypto"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
description = "Provides facilities for generating application specific crypto wrapper types."
@@ -9,13 +9,16 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
documentation = "https://docs.rs/sp-application-crypto"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../core" }
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../core" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
[features]
default = [ "std" ]
@@ -31,6 +34,3 @@ full_crypto = [
"sp-io/disable_panic_handler",
"sp-io/disable_oom",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -9,12 +9,12 @@ publish = false
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies]
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../core" }
substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../../test-utils/runtime/client" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../runtime" }
sp-api = { version = "2.0.0-alpha.5", path = "../../api" }
sp-application-crypto = { version = "2.0.0-alpha.5", path = "../" }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../core" }
substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../../test-utils/runtime/client" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../runtime" }
sp-api = { version = "2.0.0-alpha.6", path = "../../api" }
sp-application-crypto = { version = "2.0.0-alpha.6", path = "../" }
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-arithmetic"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,14 +9,17 @@ repository = "https://github.com/paritytech/substrate/"
description = "Minimal fixed point arithmetic primitives and types for runtime."
documentation = "https://docs.rs/sp-arithmetic"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", 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-alpha.5", default-features = false, path = "../std" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-debug-derive = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/debug-derive" }
sp-debug-derive = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/debug-derive" }
primitive-types = { version = "0.7.0", default-features = false }
[dev-dependencies]
@@ -38,6 +41,3 @@ std = [
[[bench]]
name = "bench"
harness = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-arithmetic-fuzzer"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,8 +9,11 @@ repository = "https://github.com/paritytech/substrate/"
description = "Fuzzer for fixed point arithmetic primitives."
documentation = "https://docs.rs/sp-arithmetic-fuzzer"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-arithmetic = { version = "2.0.0-alpha.5", path = ".." }
sp-arithmetic = { version = "2.0.0-alpha.6", path = ".." }
honggfuzz = "0.5"
primitive-types = "0.7.0"
num-bigint = "0.2"
@@ -27,6 +30,3 @@ path = "src/per_thing_rational.rs"
[[bin]]
name = "rational128"
path = "src/rational128.rs"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-authority-discovery"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Authority discovery primitives"
edition = "2018"
@@ -8,12 +8,15 @@ license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-alpha.5", default-features = false, path = "../application-crypto" }
sp-application-crypto = { version = "2.0.0-alpha.6", default-features = false, path = "../application-crypto" }
codec = { package = "parity-scale-codec", default-features = false, version = "1.3.0" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-api = { version = "2.0.0-alpha.5", default-features = false, path = "../api" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../runtime" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
sp-api = { version = "2.0.0-alpha.6", default-features = false, path = "../api" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime" }
[features]
default = ["std"]
@@ -24,6 +27,3 @@ std = [
"sp-api/std",
"sp-runtime/std"
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-authorship"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Authorship primitives"
edition = "2018"
@@ -8,10 +8,13 @@ license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-inherents = { version = "2.0.0-alpha.5", default-features = false, path = "../inherents" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../runtime" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../inherents" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
[features]
@@ -22,6 +25,3 @@ std = [
"sp-inherents/std",
"sp-runtime/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-block-builder"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,12 +8,15 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "The block builder runtime api."
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../runtime" }
sp-api = { version = "2.0.0-alpha.5", default-features = false, path = "../api" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime" }
sp-api = { version = "2.0.0-alpha.6", default-features = false, path = "../api" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
sp-inherents = { version = "2.0.0-alpha.5", default-features = false, path = "../inherents" }
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../inherents" }
[features]
default = [ "std" ]
@@ -24,6 +27,3 @@ std = [
"sp-api/std",
"sp-std/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-blockchain"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,6 +9,9 @@ repository = "https://github.com/paritytech/substrate/"
description = "Substrate blockchain traits and primitives."
documentation = "https://docs.rs/sp-blockchain"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
log = "0.4.8"
@@ -16,10 +19,7 @@ lru = "0.4.0"
parking_lot = "0.10.0"
derive_more = "0.99.2"
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
sp-consensus = { version = "0.8.0-alpha.5", path = "../consensus/common" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../runtime" }
sp-block-builder = { version = "2.0.0-alpha.5", path = "../block-builder" }
sp-state-machine = { version = "0.8.0-alpha.5", path = "../state-machine" }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
sp-consensus = { version = "0.8.0-alpha.6", path = "../consensus/common" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../runtime" }
sp-block-builder = { version = "2.0.0-alpha.6", path = "../block-builder" }
sp-state-machine = { version = "0.8.0-alpha.6", path = "../state-machine" }
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-chain-spec"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus-aura"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Primitives for Aura consensus"
edition = "2018"
@@ -8,14 +8,17 @@ license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-alpha.5", default-features = false, path = "../../application-crypto" }
sp-application-crypto = { version = "2.0.0-alpha.6", default-features = false, path = "../../application-crypto" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../std" }
sp-api = { version = "2.0.0-alpha.5", default-features = false, path = "../../api" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../runtime" }
sp-inherents = { version = "2.0.0-alpha.5", default-features = false, path = "../../inherents" }
sp-timestamp = { version = "2.0.0-alpha.5", default-features = false, path = "../../timestamp" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../std" }
sp-api = { version = "2.0.0-alpha.6", default-features = false, path = "../../api" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../runtime" }
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../../inherents" }
sp-timestamp = { version = "2.0.0-alpha.6", default-features = false, path = "../../timestamp" }
[features]
default = ["std"]
@@ -28,6 +31,3 @@ std = [
"sp-inherents/std",
"sp-timestamp/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus-babe"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Primitives for BABE consensus"
edition = "2018"
@@ -8,16 +8,19 @@ license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-alpha.5", default-features = false, path = "../../application-crypto" }
sp-application-crypto = { version = "2.0.0-alpha.6", default-features = false, path = "../../application-crypto" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../std" }
sp-api = { version = "2.0.0-alpha.5", default-features = false, path = "../../api" }
sp-consensus = { version = "0.8.0-alpha.5", optional = true, path = "../common" }
sp-consensus-vrf = { version = "0.8.0-alpha.5", path = "../vrf", default-features = false }
sp-inherents = { version = "2.0.0-alpha.5", default-features = false, path = "../../inherents" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../runtime" }
sp-timestamp = { version = "2.0.0-alpha.5", default-features = false, path = "../../timestamp" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../std" }
sp-api = { version = "2.0.0-alpha.6", default-features = false, path = "../../api" }
sp-consensus = { version = "0.8.0-alpha.6", optional = true, path = "../common" }
sp-consensus-vrf = { version = "0.8.0-alpha.6", path = "../vrf", default-features = false }
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../../inherents" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../runtime" }
sp-timestamp = { version = "2.0.0-alpha.6", default-features = false, path = "../../timestamp" }
[features]
default = ["std"]
@@ -32,6 +35,3 @@ std = [
"sp-runtime/std",
"sp-timestamp/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,21 +9,24 @@ repository = "https://github.com/paritytech/substrate/"
description = "Common utilities for building and using consensus engines in substrate."
documentation = "https://docs.rs/sp-consensus/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
derive_more = "0.99.2"
libp2p = { version = "0.18.0", default-features = false }
log = "0.4.8"
sp-core = { path= "../../core", version = "2.0.0-alpha.5"}
sp-inherents = { version = "2.0.0-alpha.5", path = "../../inherents" }
sp-state-machine = { version = "0.8.0-alpha.5", path = "../../../primitives/state-machine" }
sp-core = { path= "../../core", version = "2.0.0-alpha.6"}
sp-inherents = { version = "2.0.0-alpha.6", path = "../../inherents" }
sp-state-machine = { version = "0.8.0-alpha.6", path = "../../../primitives/state-machine" }
futures = { version = "0.3.1", features = ["thread-pool"] }
futures-timer = "3.0.1"
futures-diagnose = "1.0"
sp-std = { version = "2.0.0-alpha.5", path = "../../std" }
sp-version = { version = "2.0.0-alpha.5", path = "../../version" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../runtime" }
sp-utils = { version = "2.0.0-alpha.5", path = "../../utils" }
sp-std = { version = "2.0.0-alpha.6", path = "../../std" }
sp-version = { version = "2.0.0-alpha.6", path = "../../version" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../runtime" }
sp-utils = { version = "2.0.0-alpha.6", path = "../../utils" }
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
parking_lot = "0.10.0"
serde = { version = "1.0", features = ["derive"] }
@@ -33,6 +36,3 @@ sp-test-primitives = { version = "2.0.0-dev", path = "../../test-primitives" }
[features]
default = []
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus-pow"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Primitives for Aura consensus"
edition = "2018"
@@ -8,11 +8,14 @@ license = "GPL-3.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "2.0.0-alpha.5", default-features = false, path = "../../api" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../std" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../runtime" }
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../core" }
sp-api = { version = "2.0.0-alpha.6", default-features = false, path = "../../api" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../std" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../runtime" }
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../core" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
[features]
@@ -24,6 +27,3 @@ std = [
"sp-core/std",
"codec/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus-vrf"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Primitives for VRF based consensus"
edition = "2018"
@@ -8,12 +8,15 @@ license = "GPL-3.0"
repository = "https://github.com/paritytech/substrate/"
homepage = "https://substrate.dev"
[package.metadata.docs.rs]
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"], optional = true }
sp-std = { version = "2.0.0-alpha.5", path = "../../std", default-features = false }
sp-core = { version = "2.0.0-alpha.5", path = "../../core", default-features = false }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../runtime" }
sp-std = { version = "2.0.0-alpha.6", path = "../../std", default-features = false }
sp-core = { version = "2.0.0-alpha.6", path = "../../core", default-features = false }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../runtime" }
[features]
default = ["std"]
@@ -24,6 +27,3 @@ std = [
"sp-core/std",
"sp-runtime/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-core"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,8 +9,11 @@ repository = "https://github.com/paritytech/substrate/"
description = "Shareable Substrate types."
documentation = "https://docs.rs/sp-core"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
log = { version = "0.4.8", default-features = false }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
@@ -29,9 +32,9 @@ num-traits = { version = "0.2.8", default-features = false }
zeroize = { version = "1.0.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-alpha.5", path = "../debug-derive" }
sp-externalities = { version = "0.8.0-alpha.5", optional = true, path = "../externalities" }
sp-storage = { version = "2.0.0-alpha.5", default-features = false, path = "../storage" }
sp-debug-derive = { version = "2.0.0-alpha.6", path = "../debug-derive" }
sp-externalities = { version = "0.8.0-alpha.6", optional = true, path = "../externalities" }
sp-storage = { version = "2.0.0-alpha.6", default-features = false, path = "../storage" }
parity-util-mem = { version = "0.6.0", default-features = false, features = ["primitive-types"] }
futures = { version = "0.3.1", optional = true }
@@ -45,10 +48,10 @@ hex = { version = "0.4", default-features = false, optional = true }
twox-hash = { version = "1.5.0", default-features = false, optional = true }
libsecp256k1 = { version = "0.3.2", default-features = false, features = ["hmac"], optional = true }
sp-runtime-interface = { version = "2.0.0-alpha.5", default-features = false, path = "../runtime-interface" }
sp-runtime-interface = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime-interface" }
[dev-dependencies]
sp-serializer = { version = "2.0.0-alpha.5", path = "../serializer" }
sp-serializer = { version = "2.0.0-alpha.6", path = "../serializer" }
pretty_assertions = "0.6.1"
hex-literal = "0.2.1"
rand = "0.7.2"
@@ -119,6 +122,3 @@ full_crypto = [
"libsecp256k1",
"sp-runtime-interface/disable_target_static_assertions",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-debug-derive"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,6 +9,10 @@ repository = "https://github.com/paritytech/substrate/"
description = "Macros to derive runtime debug implementation."
documentation = "https://docs.rs/sp-debug-derive"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[lib]
proc-macro = true
@@ -21,7 +25,3 @@ proc-macro2 = "1.0"
std = []
[dev-dependencies]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-externalities"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -9,10 +9,10 @@ repository = "https://github.com/paritytech/substrate/"
description = "Substrate externalities abstraction"
documentation = "https://docs.rs/sp-externalities"
[dependencies]
sp-storage = { version = "2.0.0-alpha.5", path = "../storage" }
sp-std = { version = "2.0.0-alpha.5", path = "../std" }
environmental = { version = "1.1.1" }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-storage = { version = "2.0.0-alpha.6", path = "../storage" }
sp-std = { version = "2.0.0-alpha.6", path = "../std" }
environmental = { version = "1.1.1" }
@@ -1,6 +1,6 @@
[package]
name = "sp-finality-grandpa"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,14 +9,17 @@ repository = "https://github.com/paritytech/substrate/"
description = "Primitives for GRANDPA integration, suitable for WASM compilation."
documentation = "https://docs.rs/sp-finality-grandpa"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-alpha.5", default-features = false, path = "../application-crypto" }
sp-application-crypto = { version = "2.0.0-alpha.6", default-features = false, path = "../application-crypto" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-api = { version = "2.0.0-alpha.5", default-features = false, path = "../api" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../runtime" }
sp-api = { version = "2.0.0-alpha.6", default-features = false, path = "../api" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime" }
[features]
default = ["std"]
@@ -28,6 +31,3 @@ std = [
"sp-api/std",
"sp-runtime/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-finality-tracker"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,10 +8,13 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "FRAME module that tracks the last finalized block, as perceived by block authors."
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
sp-inherents = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/inherents" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/inherents" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
[features]
default = ["std"]
@@ -20,6 +23,3 @@ std = [
"sp-std/std",
"sp-inherents/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-inherents"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,11 +9,14 @@ repository = "https://github.com/paritytech/substrate/"
description = "Provides types and traits for creating and checking inherents."
documentation = "https://docs.rs/sp-inherents"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
parking_lot = { version = "0.10.0", optional = true }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../core" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../core" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
derive_more = { version = "0.99.2", optional = true }
@@ -26,6 +29,3 @@ std = [
"sp-core/std",
"derive_more",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+11 -11
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-io"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,18 +9,21 @@ repository = "https://github.com/paritytech/substrate/"
description = "I/O for Substrate runtimes"
documentation = "https://docs.rs/sp-io"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
hash-db = { version = "0.15.2", default-features = false }
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../core" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../core" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
libsecp256k1 = { version = "0.3.4", optional = true }
sp-state-machine = { version = "0.8.0-alpha.5", optional = true, path = "../../primitives/state-machine" }
sp-wasm-interface = { version = "2.0.0-alpha.5", path = "../../primitives/wasm-interface", default-features = false }
sp-runtime-interface = { version = "2.0.0-alpha.5", default-features = false, path = "../runtime-interface" }
sp-trie = { version = "2.0.0-alpha.5", optional = true, path = "../../primitives/trie" }
sp-externalities = { version = "0.8.0-alpha.5", optional = true, path = "../externalities" }
sp-state-machine = { version = "0.8.0-alpha.6", optional = true, path = "../../primitives/state-machine" }
sp-wasm-interface = { version = "2.0.0-alpha.6", path = "../../primitives/wasm-interface", default-features = false }
sp-runtime-interface = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime-interface" }
sp-trie = { version = "2.0.0-alpha.6", optional = true, path = "../../primitives/trie" }
sp-externalities = { version = "0.8.0-alpha.6", optional = true, path = "../externalities" }
log = { version = "0.4.8", optional = true }
[features]
@@ -46,6 +49,3 @@ std = [
disable_panic_handler = []
disable_oom = []
disable_allocator = []
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-keyring"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,12 +9,12 @@ repository = "https://github.com/paritytech/substrate/"
description = "Keyring support code for the runtime. A set of test accounts."
documentation = "https://docs.rs/sp-keyring"
[dependencies]
sp-core = { version = "2.0.0-alpha.5", path = "../core" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../runtime" }
lazy_static = "1.4.0"
strum = { version = "0.16.0", features = ["derive"] }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-core = { version = "2.0.0-alpha.6", path = "../core" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../runtime" }
lazy_static = "1.4.0"
strum = { version = "0.16.0", features = ["derive"] }
+6 -6
View File
@@ -1,16 +1,19 @@
[package]
description = "Substrate offchain workers primitives"
name = "sp-offchain"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
license = "GPL-3.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "2.0.0-alpha.5", default-features = false, path = "../api" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../runtime" }
sp-api = { version = "2.0.0-alpha.6", default-features = false, path = "../api" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime" }
[features]
default = ["std"]
@@ -18,6 +21,3 @@ std = [
"sp-api/std",
"sp-runtime/std"
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-panic-handler"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,9 +9,9 @@ repository = "https://github.com/paritytech/substrate/"
description = "Custom panic hook with bug report link"
documentation = "https://docs.rs/sp-panic-handler"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
backtrace = "0.3.38"
log = "0.4.8"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-phragmen"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,17 +8,20 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "Phragmen primitives"
[package.metadata.docs.rs]
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-alpha.5", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
sp-phragmen-compact = { version = "2.0.0-alpha.4", path = "./compact" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
sp-phragmen-compact = { version = "2.0.0-dev.1", path = "./compact" }
[dev-dependencies]
substrate-test-utils = { version = "2.0.0-alpha.5", path = "../../test-utils" }
substrate-test-utils = { version = "2.0.0-alpha.6", path = "../../test-utils" }
rand = "0.7.3"
sp-phragmen = { path = "." }
sp-phragmen = { path = "." , version = "2.0.0-alpha.6"}
[features]
default = ["std"]
@@ -29,6 +32,3 @@ std = [
"sp-std/std",
"sp-runtime/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-phragmen-compact"
version = "2.0.0-dev"
version = "2.0.0-dev.1"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,6 +8,9 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "Phragmen Compact Solution"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[lib]
proc-macro = true
@@ -16,6 +19,3 @@ syn = { version = "1.0.7", features = ["full", "visit"] }
quote = "1.0"
proc-macro2 = "1.0.6"
proc-macro-crate = "0.1.4"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-rpc"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,12 +8,12 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "Substrate RPC primitives and utilities."
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", features = ["derive"] }
sp-core = { version = "2.0.0-alpha.5", path = "../core" }
sp-core = { version = "2.0.0-alpha.6", path = "../core" }
[dev-dependencies]
serde_json = "1.0.41"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-runtime-interface"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,20 +9,23 @@ repository = "https://github.com/paritytech/substrate/"
description = "Substrate runtime interface"
documentation = "https://docs.rs/sp-runtime-interface/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-wasm-interface = { version = "2.0.0-alpha.5", path = "../wasm-interface", default-features = false }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-runtime-interface-proc-macro = { version = "2.0.0-alpha.5", path = "proc-macro" }
sp-externalities = { version = "0.8.0-alpha.5", optional = true, path = "../externalities" }
sp-wasm-interface = { version = "2.0.0-alpha.6", path = "../wasm-interface", default-features = false }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
sp-runtime-interface-proc-macro = { version = "2.0.0-alpha.6", path = "proc-macro" }
sp-externalities = { version = "0.8.0-alpha.6", optional = true, path = "../externalities" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
static_assertions = "1.0.0"
primitive-types = { version = "0.7.0", default-features = false }
[dev-dependencies]
sp-runtime-interface-test-wasm = { version = "2.0.0-dev", path = "test-wasm" }
sp-state-machine = { version = "0.8.0-alpha.5", path = "../../primitives/state-machine" }
sp-core = { version = "2.0.0-alpha.5", path = "../core" }
sp-io = { version = "2.0.0-alpha.5", path = "../io" }
sp-state-machine = { version = "0.8.0-alpha.6", path = "../../primitives/state-machine" }
sp-core = { version = "2.0.0-alpha.6", path = "../core" }
sp-io = { version = "2.0.0-alpha.6", path = "../io" }
rustversion = "1.0.0"
trybuild = "1.0.23"
@@ -43,6 +46,3 @@ std = [
# Disables static assertions in `impls.rs` that checks the word size. To prevent any footgun, the
# check is changed into a runtime check.
disable_target_static_assertions = []
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-runtime-interface-proc-macro"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,6 +9,9 @@ repository = "https://github.com/paritytech/substrate/"
description = "This crate provides procedural macros for usage within the context of the Substrate runtime interface."
documentation = "https://docs.rs/sp-runtime-interface-proc-macro"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[lib]
proc-macro = true
@@ -18,6 +21,3 @@ quote = "1.0.3"
proc-macro2 = "1.0.3"
Inflector = "0.11.4"
proc-macro-crate = "0.1.4"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -9,11 +9,14 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
publish = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-runtime-interface = { version = "2.0.0-alpha.5", default-features = false, path = "../" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../std" }
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../io" }
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../core" }
sp-runtime-interface = { version = "2.0.0-alpha.6", default-features = false, path = "../" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../std" }
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../io" }
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../core" }
[build-dependencies]
wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }
@@ -21,6 +24,3 @@ wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-run
[features]
default = [ "std" ]
std = [ "sp-runtime-interface/std", "sp-std/std", "sp-core/std", "sp-io/std" ]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -9,11 +9,14 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
publish = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-runtime-interface = { version = "2.0.0-alpha.5", default-features = false, path = "../" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../std" }
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../io" }
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../core" }
sp-runtime-interface = { version = "2.0.0-alpha.6", default-features = false, path = "../" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../std" }
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../io" }
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../core" }
[build-dependencies]
wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }
@@ -21,6 +24,3 @@ wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-run
[features]
default = [ "std" ]
std = [ "sp-runtime-interface/std", "sp-std/std", "sp-core/std", "sp-io/std" ]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -8,14 +8,14 @@ publish = false
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
[dependencies]
sp-runtime-interface = { version = "2.0.0-alpha.5", path = "../" }
sc-executor = { version = "0.8.0-alpha.5", path = "../../../client/executor" }
sp-runtime-interface-test-wasm = { version = "2.0.0-dev", path = "../test-wasm" }
sp-runtime-interface-test-wasm-deprecated = { version = "2.0.0-dev", path = "../test-wasm-deprecated" }
sp-state-machine = { version = "0.8.0-alpha.5", path = "../../../primitives/state-machine" }
sp-runtime = { version = "2.0.0-alpha.5", path = "../../runtime" }
sp-io = { version = "2.0.0-alpha.5", path = "../../io" }
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-runtime-interface = { version = "2.0.0-alpha.6", path = "../" }
sc-executor = { version = "0.8.0-alpha.6", path = "../../../client/executor" }
sp-runtime-interface-test-wasm = { version = "2.0.0-dev", path = "../test-wasm" }
sp-runtime-interface-test-wasm-deprecated = { version = "2.0.0-dev", path = "../test-wasm-deprecated" }
sp-state-machine = { version = "0.8.0-alpha.6", path = "../../../primitives/state-machine" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../../runtime" }
sp-io = { version = "2.0.0-alpha.6", path = "../../io" }
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-runtime"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,20 +9,23 @@ repository = "https://github.com/paritytech/substrate/"
description = "Runtime Modules shared primitive types."
documentation = "https://docs.rs/sp-runtime"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../core" }
sp-application-crypto = { version = "2.0.0-alpha.5", default-features = false, path = "../application-crypto" }
sp-arithmetic = { version = "2.0.0-alpha.5", default-features = false, path = "../arithmetic" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../io" }
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../core" }
sp-application-crypto = { version = "2.0.0-alpha.6", default-features = false, path = "../application-crypto" }
sp-arithmetic = { version = "2.0.0-alpha.6", default-features = false, path = "../arithmetic" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
sp-io = { version = "2.0.0-alpha.6", 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-alpha.5", default-features = false, path = "../inherents" }
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../inherents" }
parity-util-mem = { version = "0.6.0", default-features = false, features = ["primitive-types"] }
hash256-std-hasher = { version = "0.15.2", default-features = false }
@@ -48,6 +51,3 @@ std = [
"parity-util-mem/std",
"hash256-std-hasher/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-sandbox"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,12 +8,15 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "This crate provides means to instantiate and execute wasm modules."
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
wasmi = { version = "0.6.2", optional = true }
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../core" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../io" }
sp-wasm-interface = { version = "2.0.0-alpha.5", default-features = false, path = "../wasm-interface" }
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../core" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../io" }
sp-wasm-interface = { version = "2.0.0-alpha.6", default-features = false, path = "../wasm-interface" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
[dev-dependencies]
@@ -31,6 +34,3 @@ std = [
"sp-wasm-interface/std",
]
strict = []
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+4 -4
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-serializer"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,9 +9,9 @@ repository = "https://github.com/paritytech/substrate/"
description = "Substrate customizable serde serializer."
documentation = "https://docs.rs/sp-serializer"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = "1.0.101"
serde_json = "1.0.41"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-session"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,15 +8,15 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "Primitives for sessions"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "2.0.0-alpha.5", default-features = false, path = "../api" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../core" }
sp-runtime = { version = "2.0.0-alpha.5", optional = true, path = "../runtime" }
sp-api = { version = "2.0.0-alpha.6", default-features = false, path = "../api" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../core" }
sp-runtime = { version = "2.0.0-alpha.6", optional = true, path = "../runtime" }
[features]
default = [ "std" ]
std = [ "sp-api/std", "sp-std/std", "sp-runtime", "sp-core/std" ]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-staking"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,10 +8,13 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "A crate which contains primitives that are useful for implementation that uses staking approaches in general. Definitions related to sessions, slashing, etc go here."
[package.metadata.docs.rs]
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-alpha.5", default-features = false, path = "../runtime" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
[features]
default = ["std"]
@@ -20,6 +23,3 @@ std = [
"sp-runtime/std",
"sp-std/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-state-machine"
version = "0.8.0-alpha.5"
version = "0.8.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate State Machine"
edition = "2018"
@@ -9,26 +9,26 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
documentation = "https://docs.rs/sp-state-machine"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
log = "0.4.8"
parking_lot = "0.10.0"
hash-db = "0.15.2"
trie-db = "0.20.1"
trie-root = "0.16.0"
sp-trie = { version = "2.0.0-alpha.5", path = "../trie" }
sp-core = { version = "2.0.0-alpha.5", path = "../core" }
sp-panic-handler = { version = "2.0.0-alpha.5", path = "../panic-handler" }
sp-trie = { version = "2.0.0-alpha.6", path = "../trie" }
sp-core = { version = "2.0.0-alpha.6", path = "../core" }
sp-panic-handler = { version = "2.0.0-alpha.6", path = "../panic-handler" }
codec = { package = "parity-scale-codec", version = "1.3.0" }
num-traits = "0.2.8"
rand = "0.7.2"
sp-externalities = { version = "0.8.0-alpha.5", path = "../externalities" }
sp-externalities = { version = "0.8.0-alpha.6", path = "../externalities" }
[dev-dependencies]
hex-literal = "0.2.1"
sp-runtime = { version = "2.0.0-alpha.5", path = "../runtime" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../runtime" }
[features]
default = []
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+4 -4
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-std"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -10,9 +10,9 @@ repository = "https://github.com/paritytech/substrate/"
description = "Lowest-abstraction level for the Substrate runtime: just exports useful primitives from std or client/alloc to be used with any code that depends on the runtime."
documentation = "https://docs.rs/sp-std"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[features]
default = ["std"]
std = []
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-storage"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
description = "Storage related primitives"
@@ -9,15 +9,15 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
documentation = "https://docs.rs/sp-storage/"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
impl-serde = { version = "0.2.3", optional = true }
sp-debug-derive = { version = "2.0.0-alpha.5", path = "../debug-derive" }
sp-debug-derive = { version = "2.0.0-alpha.6", path = "../debug-derive" }
[features]
default = [ "std" ]
std = [ "sp-std/std", "serde", "impl-serde" ]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -8,12 +8,15 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
publish = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-alpha.5", default-features = false, path = "../application-crypto" }
sp-application-crypto = { version = "2.0.0-alpha.6", default-features = false, path = "../application-crypto" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../core" }
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../core" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../runtime" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime" }
parity-util-mem = { version = "0.6.0", default-features = false, features = ["primitive-types"] }
[features]
@@ -24,6 +27,3 @@ std = [
"sp-application-crypto/std",
"serde",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-timestamp"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -8,12 +8,15 @@ homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
description = "Substrate core types and inherents for timestamps."
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "2.0.0-alpha.5", default-features = false, path = "../api" }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../runtime" }
sp-api = { version = "2.0.0-alpha.6", default-features = false, path = "../api" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime" }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
sp-inherents = { version = "2.0.0-alpha.5", default-features = false, path = "../inherents" }
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../inherents" }
impl-trait-for-tuples = "0.1.3"
wasm-timer = { version = "0.2", optional = true }
@@ -27,6 +30,3 @@ std = [
"sp-inherents/std",
"wasm-timer",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-transaction-pool"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,6 +9,9 @@ repository = "https://github.com/paritytech/substrate/"
description = "Transaction pool primitives types & Runtime API."
documentation = "https://docs.rs/sp-transaction-pool"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", optional = true }
@@ -16,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-alpha.5", default-features = false, path = "../api" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../runtime" }
sp-utils = { version = "2.0.0-alpha.5", default-features = false, path = "../utils" }
sp-api = { version = "2.0.0-alpha.6", default-features = false, path = "../api" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime" }
sp-utils = { version = "2.0.0-alpha.6", default-features = false, path = "../utils" }
[features]
default = [ "std" ]
@@ -31,6 +34,3 @@ std = [
"sp-api/std",
"sp-runtime/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-trie"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Patricia trie stuff using a parity-scale-codec node format"
repository = "https://github.com/paritytech/substrate/"
@@ -9,25 +9,28 @@ edition = "2018"
homepage = "https://substrate.dev"
documentation = "https://docs.rs/sp-trie"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[[bench]]
name = "bench"
harness = false
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
hash-db = { version = "0.15.2", default-features = false }
trie-db = { version = "0.20.1", default-features = false }
trie-root = { version = "0.16.0", default-features = false }
memory-db = { version = "0.20.0", default-features = false }
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../core" }
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../core" }
[dev-dependencies]
trie-bench = "0.21.0"
trie-standardmap = "0.15.2"
criterion = "0.2.11"
hex-literal = "0.2.1"
sp-runtime = { version = "2.0.0-alpha.5", path = "../runtime" }
sp-runtime = { version = "2.0.0-alpha.6", path = "../runtime" }
[features]
default = ["std"]
@@ -40,6 +43,3 @@ std = [
"trie-root/std",
"sp-core/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-utils"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-version"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,13 +9,16 @@ repository = "https://github.com/paritytech/substrate/"
description = "Version module for the Substrate runtime; Provides a function that returns the runtime version."
documentation = "https://docs.rs/sp-version"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
impl-serde = { version = "0.2.3", optional = true }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../runtime" }
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../std" }
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../runtime" }
[features]
default = ["std"]
@@ -26,6 +29,3 @@ std = [
"sp-std/std",
"sp-runtime/std",
]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
@@ -1,6 +1,6 @@
[package]
name = "sp-wasm-interface"
version = "2.0.0-alpha.5"
version = "2.0.0-alpha.6"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
@@ -9,15 +9,15 @@ repository = "https://github.com/paritytech/substrate/"
description = "Types and traits for interfacing between the host and the wasm runtime."
documentation = "https://docs.rs/sp-wasm-interface"
[package.metadata.docs.rs]
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-alpha.5", path = "../std", default-features = false }
sp-std = { version = "2.0.0-alpha.6", path = "../std", default-features = false }
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
[features]
default = [ "std" ]
std = [ "wasmi", "sp-std/std", "codec/std" ]
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]