Attempting to fix publishing (#9140)

* mark template and utils as non-publish

* switch to development version for testing

* activate unleash check

* maybe if I disable all rules...

* Fix isolated compilation of `max-encoded-len-derive` with `syn`

error[E0369]: binary operation `==` cannot be applied to type `syn::Path`
  --> src/lib.rs:88:29
   |
88 |             .filter(|attr| attr.path == parse_quote!(max_encoded_len_crate))
   |                            --------- ^^ ----------------------------------- _
   |                            |
   |                            syn::Path

error: aborting due to previous error

For more information about this error, try `rustc --explain E0369`.
Error: could not compile `max-encoded-len-derive`

* WIP: bump changes crates since v3 tag to next breaking

cargo unleash version bump-breaking --changed-since v3.0.0
cargo unleash version set-pre dev --changed-since v3.0.0

FIXME: Don't modify crates that are not yet released, e.g.
`max-encoded-len-derive`

* Update lockfile

* WIP: Bump sp-transaction-pool as well

* WIP: Bump sp-offchain as well

* WIP: Bump frame-system-rpc-runtime-api as well

* WIP: Bump sp-authority-discovery as well

* Manually deactivate dev-deps before `cargo unleash check`

Otherwise we run into `Cycle detected` error.

* Bump sp-consensus-slots

* Add missing Cargo.lock change

* Bump sp-consensus-vrf as well

* Bump sp-keyring as well

* Bump sp-consensus-pow as well

* Try to speed up the `unleash-check` job

Previously, the job took 106 minutes - let's see if explicitly
specifying a `CARGO_TARGET_DIR` will help

* fixup: Ensure the temp target dir exists for unleash check

* Bump pallet-transaction-payment-rpc-runtime-api as well

Needed for Polkadot

* Bump pallet-transaction-payment-rpc as well

Needed for Polkadot

* Try updating crates after patching in the Polkadot CI job

* Use another approach to update patched Substrate crates

* Try to update all sp-core versions in Polkadot CI job

* Simplify sp-core version checking

* Apply another shellcheck lint

* Just do the simplest thing I guess

* Welp don't do --offline then

* Clean up `unleash-check` job triggers

Co-authored-by: Denis Pisarev <denis.pisarev@parity.io>

* Fix a note in unleash-check cache step

* Add a note about temporary optimization in cargo-unleash

* Pin a newer version of cargo-unleash

Co-authored-by: Igor Matuszewski <xanewok@gmail.com>
Co-authored-by: Denis Pisarev <denis.pisarev@parity.io>
This commit is contained in:
Benjamin Kampmann
2021-07-11 14:17:53 +02:00
committed by GitHub
parent 3850a43323
commit c78c2892a4
206 changed files with 2097 additions and 2084 deletions
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-api"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,12 +14,12 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
sp-api-proc-macro = { version = "3.0.0", path = "proc-macro" }
sp-core = { version = "3.0.0", default-features = false, path = "../core" }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" }
sp-version = { version = "3.0.0", default-features = false, path = "../version" }
sp-state-machine = { version = "0.9.0", optional = true, path = "../state-machine" }
sp-api-proc-macro = { version = "4.0.0-dev", path = "proc-macro" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" }
sp-version = { version = "4.0.0-dev", default-features = false, path = "../version" }
sp-state-machine = { version = "0.10.0-dev", optional = true, path = "../state-machine" }
hash-db = { version = "0.15.2", optional = true }
thiserror = { version = "1.0.21", optional = true }
@@ -1,6 +1,6 @@
[package]
name = "sp-api-proc-macro"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
+9 -9
View File
@@ -12,16 +12,16 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "3.0.0", path = "../" }
sp-api = { version = "4.0.0-dev", path = "../" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
sp-version = { version = "3.0.0", path = "../../version" }
sp-tracing = { version = "3.0.0", path = "../../tracing" }
sp-runtime = { version = "3.0.0", path = "../../runtime" }
sp-blockchain = { version = "3.0.0", path = "../../blockchain" }
sp-consensus = { version = "0.9.0", path = "../../consensus/common" }
sc-block-builder = { version = "0.9.0", path = "../../../client/block-builder" }
sp-version = { version = "4.0.0-dev", path = "../../version" }
sp-tracing = { version = "4.0.0-dev", path = "../../tracing" }
sp-runtime = { version = "4.0.0-dev", path = "../../runtime" }
sp-blockchain = { version = "4.0.0-dev", path = "../../blockchain" }
sp-consensus = { version = "0.10.0-dev", path = "../../consensus/common" }
sc-block-builder = { version = "0.10.0-dev", path = "../../../client/block-builder" }
codec = { package = "parity-scale-codec", version = "2.0.0" }
sp-state-machine = { version = "0.9.0", path = "../../state-machine" }
sp-state-machine = { version = "0.10.0-dev", path = "../../state-machine" }
trybuild = "1.0.42"
rustversion = "1.0.0"
@@ -29,7 +29,7 @@ rustversion = "1.0.0"
criterion = "0.3.0"
futures = "0.3.9"
log = "0.4.14"
sp-core = { version = "3.0.0", path = "../../core" }
sp-core = { version = "4.0.0-dev", path = "../../core" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
[[bench]]
@@ -1,6 +1,6 @@
[package]
name = "sp-application-crypto"
version = "3.0.0"
version = "4.0.0-dev"
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 = "3.0.0", default-features = false, path = "../core" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-io = { version = "3.0.0", default-features = false, path = "../io" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
sp-io = { version = "4.0.0-dev", default-features = false, path = "../io" }
[features]
default = [ "std" ]
@@ -13,9 +13,9 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-core = { version = "3.0.0", default-features = false, path = "../../core" }
sp-keystore = { version = "0.9.0", path = "../../keystore", default-features = false }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../../core" }
sp-keystore = { version = "0.10.0-dev", path = "../../keystore", default-features = false }
substrate-test-runtime-client = { version = "2.0.0", path = "../../../test-utils/runtime/client" }
sp-runtime = { version = "3.0.0", path = "../../runtime" }
sp-api = { version = "3.0.0", path = "../../api" }
sp-application-crypto = { version = "3.0.0", path = "../" }
sp-runtime = { version = "4.0.0-dev", path = "../../runtime" }
sp-api = { version = "4.0.0-dev", path = "../../api" }
sp-application-crypto = { version = "4.0.0-dev", path = "../" }
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-arithmetic"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -19,7 +19,7 @@ codec = { package = "parity-scale-codec", version = "2.0.0", default-features =
integer-sqrt = "0.1.2"
static_assertions = "1.1.0"
num-traits = { version = "0.2.8", default-features = false }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-debug-derive = { version = "3.0.0", default-features = false, path = "../debug-derive" }
@@ -14,7 +14,7 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-arithmetic = { version = "3.0.0", path = ".." }
sp-arithmetic = { version = "4.0.0-dev", path = ".." }
honggfuzz = "0.5.49"
primitive-types = "0.10.0"
num-bigint = "0.2"
@@ -1,6 +1,6 @@
[package]
name = "sp-authority-discovery"
version = "3.0.0"
version = "4.0.0-dev"
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 = "3.0.0", default-features = false, path = "../application-crypto" }
sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../application-crypto" }
codec = { package = "parity-scale-codec", default-features = false, version = "2.0.0" }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-api = { version = "3.0.0", default-features = false, path = "../api" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" }
[features]
default = ["std"]
+4 -4
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-authorship"
version = "3.0.0"
version = "4.0.0-dev"
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 = "3.0.0", default-features = false, path = "../inherents" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inherents" }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
async-trait = { version = "0.1.48", optional = true }
@@ -1,6 +1,6 @@
[package]
name = "sp-block-builder"
version = "3.0.0"
version = "4.0.0-dev"
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 = "3.0.0", default-features = false, path = "../runtime" }
sp-api = { version = "3.0.0", default-features = false, path = "../api" }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
sp-inherents = { version = "3.0.0", default-features = false, path = "../inherents" }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inherents" }
[features]
default = [ "std" ]
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-blockchain"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -20,8 +20,8 @@ parking_lot = "0.11.1"
thiserror = "1.0.21"
futures = "0.3.9"
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
sp-consensus = { version = "0.9.0", path = "../consensus/common" }
sp-runtime = { version = "3.0.0", path = "../runtime" }
sp-state-machine = { version = "0.9.0", path = "../state-machine" }
sp-database = { version = "3.0.0", path = "../database" }
sp-api = { version = "3.0.0", path = "../api" }
sp-consensus = { version = "0.10.0-dev", path = "../consensus/common" }
sp-runtime = { version = "4.0.0-dev", path = "../runtime" }
sp-state-machine = { version = "0.10.0-dev", path = "../state-machine" }
sp-database = { version = "4.0.0-dev", path = "../database" }
sp-api = { version = "4.0.0-dev", path = "../api" }
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus-aura"
version = "0.9.0"
version = "0.10.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Primitives for Aura consensus"
edition = "2018"
@@ -13,15 +13,15 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../application-crypto" }
sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../../application-crypto" }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
sp-std = { version = "3.0.0", default-features = false, path = "../../std" }
sp-api = { version = "3.0.0", default-features = false, path = "../../api" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../../runtime" }
sp-inherents = { version = "3.0.0", default-features = false, path = "../../inherents" }
sp-timestamp = { version = "3.0.0", default-features = false, path = "../../timestamp" }
sp-consensus-slots = { version = "0.9.0", default-features = false, path = "../slots" }
sp-consensus = { version = "0.9.0", path = "../common", optional = true }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../../std" }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../runtime" }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../inherents" }
sp-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../timestamp" }
sp-consensus-slots = { version = "0.10.0-dev", default-features = false, path = "../slots" }
sp-consensus = { version = "0.10.0-dev", path = "../common", optional = true }
async-trait = { version = "0.1.48", optional = true }
[features]
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus-babe"
version = "0.9.0"
version = "0.10.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Primitives for BABE consensus"
edition = "2018"
@@ -13,19 +13,19 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../application-crypto" }
sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../../application-crypto" }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
merlin = { version = "2.0", default-features = false }
sp-std = { version = "3.0.0", default-features = false, path = "../../std" }
sp-api = { version = "3.0.0", default-features = false, path = "../../api" }
sp-consensus = { version = "0.9.0", optional = true, path = "../common" }
sp-consensus-slots = { version = "0.9.0", default-features = false, path = "../slots" }
sp-consensus-vrf = { version = "0.9.0", path = "../vrf", default-features = false }
sp-core = { version = "3.0.0", default-features = false, path = "../../core" }
sp-inherents = { version = "3.0.0", default-features = false, path = "../../inherents" }
sp-keystore = { version = "0.9.0", default-features = false, path = "../../keystore", optional = true }
sp-runtime = { version = "3.0.0", default-features = false, path = "../../runtime" }
sp-timestamp = { version = "3.0.0", path = "../../timestamp", optional = true }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../../std" }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" }
sp-consensus = { version = "0.10.0-dev", optional = true, path = "../common" }
sp-consensus-slots = { version = "0.10.0-dev", default-features = false, path = "../slots" }
sp-consensus-vrf = { version = "0.10.0-dev", path = "../vrf", default-features = false }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../../core" }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../inherents" }
sp-keystore = { version = "0.10.0-dev", default-features = false, path = "../../keystore", optional = true }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../runtime" }
sp-timestamp = { version = "4.0.0-dev", path = "../../timestamp", optional = true }
serde = { version = "1.0.123", features = ["derive"], optional = true }
async-trait = { version = "0.1.48", optional = true }
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus"
version = "0.9.0"
version = "0.10.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -18,17 +18,17 @@ targets = ["x86_64-unknown-linux-gnu"]
thiserror = "1.0.21"
libp2p = { version = "0.37.1", default-features = false }
log = "0.4.8"
sp-core = { path= "../../core", version = "3.0.0"}
sp-inherents = { version = "3.0.0", path = "../../inherents" }
sp-state-machine = { version = "0.9.0", path = "../../state-machine" }
sp-core = { path= "../../core", version = "4.0.0-dev"}
sp-inherents = { version = "4.0.0-dev", path = "../../inherents" }
sp-state-machine = { version = "0.10.0-dev", path = "../../state-machine" }
futures = { version = "0.3.1", features = ["thread-pool"] }
futures-timer = "3.0.1"
sp-std = { version = "3.0.0", path = "../../std" }
sp-version = { version = "3.0.0", path = "../../version" }
sp-runtime = { version = "3.0.0", path = "../../runtime" }
sp-utils = { version = "3.0.0", path = "../../utils" }
sp-trie = { version = "3.0.0", path = "../../trie" }
sp-api = { version = "3.0.0", path = "../../api" }
sp-std = { version = "4.0.0-dev", path = "../../std" }
sp-version = { version = "4.0.0-dev", path = "../../version" }
sp-runtime = { version = "4.0.0-dev", path = "../../runtime" }
sp-utils = { version = "4.0.0-dev", path = "../../utils" }
sp-trie = { version = "4.0.0-dev", path = "../../trie" }
sp-api = { version = "4.0.0-dev", path = "../../api" }
codec = { package = "parity-scale-codec", version = "2.0.0", features = ["derive"] }
parking_lot = "0.11.1"
serde = { version = "1.0", features = ["derive"] }
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus-pow"
version = "0.9.0"
version = "0.10.0-dev"
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 = "3.0.0", default-features = false, path = "../../api" }
sp-std = { version = "3.0.0", default-features = false, path = "../../std" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../../runtime" }
sp-core = { version = "3.0.0", default-features = false, path = "../../core" }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../api" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../../std" }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../runtime" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../../core" }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
[features]
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus-slots"
version = "0.9.0"
version = "0.10.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Primitives for slots-based consensus"
edition = "2018"
@@ -14,8 +14,8 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
sp-runtime = { version = "3.0.0", default-features = false, path = "../../runtime" }
sp-arithmetic = { version = "3.0.0", default-features = false, path = "../../arithmetic" }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../runtime" }
sp-arithmetic = { version = "4.0.0-dev", default-features = false, path = "../../arithmetic" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "sp-consensus-vrf"
version = "0.9.0"
version = "0.10.0-dev"
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 = "2.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 = "3.0.0", path = "../../std", default-features = false }
sp-core = { version = "3.0.0", path = "../../core", default-features = false }
sp-runtime = { version = "3.0.0", default-features = false, path = "../../runtime" }
sp-std = { version = "4.0.0-dev", path = "../../std", default-features = false }
sp-core = { version = "4.0.0-dev", path = "../../core", default-features = false }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../../runtime" }
[features]
default = ["std"]
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-core"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -13,7 +13,7 @@ documentation = "https://docs.rs/sp-core"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false, features = ["derive", "max-encoded-len"] }
log = { version = "0.4.11", default-features = false }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
@@ -34,8 +34,8 @@ secrecy = { version = "0.7.0", default-features = false }
lazy_static = { version = "1.4.0", default-features = false, optional = true }
parking_lot = { version = "0.11.1", optional = true }
sp-debug-derive = { version = "3.0.0", path = "../debug-derive" }
sp-externalities = { version = "0.9.0", optional = true, path = "../externalities" }
sp-storage = { version = "3.0.0", default-features = false, path = "../storage" }
sp-externalities = { version = "0.10.0-dev", optional = true, path = "../externalities" }
sp-storage = { version = "4.0.0-dev", default-features = false, path = "../storage" }
parity-util-mem = { version = "0.10.0", default-features = false, features = ["primitive-types"] }
futures = { version = "0.3.1", optional = true }
dyn-clonable = { version = "0.9.0", optional = true }
@@ -52,7 +52,7 @@ 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 = "3.0.0", default-features = false, path = "../runtime-interface" }
sp-runtime-interface = { version = "4.0.0-dev", default-features = false, path = "../runtime-interface" }
[dev-dependencies]
sp-serializer = { version = "3.0.0", path = "../serializer" }
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-database"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -1,6 +1,6 @@
[package]
name = "sp-externalities"
version = "0.9.0"
version = "0.10.0-dev"
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 = "3.0.0", path = "../storage", default-features = false }
sp-std = { version = "3.0.0", path = "../std", default-features = false }
sp-storage = { version = "4.0.0-dev", path = "../storage", default-features = false }
sp-std = { version = "4.0.0-dev", path = "../std", default-features = false }
environmental = { version = "1.1.3", default-features = false }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
@@ -1,6 +1,6 @@
[package]
name = "sp-finality-grandpa"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -19,12 +19,12 @@ codec = { package = "parity-scale-codec", version = "2.0.0", default-features =
grandpa = { package = "finality-grandpa", version = "0.14.1", 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 = "3.0.0", default-features = false, path = "../api" }
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../application-crypto" }
sp-core = { version = "3.0.0", default-features = false, path = "../core" }
sp-keystore = { version = "0.9.0", default-features = false, path = "../keystore", optional = true }
sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../application-crypto" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" }
sp-keystore = { version = "0.10.0-dev", default-features = false, path = "../keystore", optional = true }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
[features]
default = ["std"]
+4 -4
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-inherents"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,9 +15,9 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-core = { version = "3.0.0", default-features = false, path = "../core" }
sp-runtime = { version = "3.0.0", path = "../runtime", optional = true }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" }
sp-runtime = { version = "4.0.0-dev", path = "../runtime", optional = true }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.21", optional = true }
impl-trait-for-tuples = "0.2.0"
+11 -11
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-io"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -17,17 +17,17 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
hash-db = { version = "0.15.2", default-features = false }
sp-core = { version = "3.0.0", default-features = false, path = "../core" }
sp-keystore = { version = "0.9.0", default-features = false, optional = true, path = "../keystore" }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" }
sp-keystore = { version = "0.10.0-dev", default-features = false, optional = true, path = "../keystore" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
libsecp256k1 = { version = "0.3.4", optional = true }
sp-state-machine = { version = "0.9.0", optional = true, path = "../state-machine" }
sp-wasm-interface = { version = "3.0.0", path = "../wasm-interface", default-features = false }
sp-runtime-interface = { version = "3.0.0", default-features = false, path = "../runtime-interface" }
sp-maybe-compressed-blob = { version = "3.0.0", optional = true, path = "../maybe-compressed-blob" }
sp-trie = { version = "3.0.0", optional = true, path = "../trie" }
sp-externalities = { version = "0.9.0", optional = true, path = "../externalities" }
sp-tracing = { version = "3.0.0", default-features = false, path = "../tracing" }
sp-state-machine = { version = "0.10.0-dev", optional = true, path = "../state-machine" }
sp-wasm-interface = { version = "4.0.0-dev", path = "../wasm-interface", default-features = false }
sp-runtime-interface = { version = "4.0.0-dev", default-features = false, path = "../runtime-interface" }
sp-maybe-compressed-blob = { version = "4.0.0-dev", optional = true, path = "../maybe-compressed-blob" }
sp-trie = { version = "4.0.0-dev", optional = true, path = "../trie" }
sp-externalities = { version = "0.10.0-dev", optional = true, path = "../externalities" }
sp-tracing = { version = "4.0.0-dev", 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.11.1", optional = true }
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-keyring"
version = "3.0.0"
version = "4.0.0-dev"
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 = "3.0.0", path = "../core" }
sp-runtime = { version = "3.0.0", path = "../runtime" }
sp-core = { version = "4.0.0-dev", path = "../core" }
sp-runtime = { version = "4.0.0-dev", path = "../runtime" }
lazy_static = "1.4.0"
strum = { version = "0.20.0", features = ["derive"] }
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-keystore"
version = "0.9.0"
version = "0.10.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -21,8 +21,8 @@ schnorrkel = { version = "0.9.1", features = ["preaudit_deprecated", "u64_backen
merlin = { version = "2.0", default-features = false }
parking_lot = { version = "0.11.1", default-features = false }
serde = { version = "1.0", optional = true}
sp-core = { version = "3.0.0", path = "../core" }
sp-externalities = { version = "0.9.0", path = "../externalities", default-features = false }
sp-core = { version = "4.0.0-dev", path = "../core" }
sp-externalities = { version = "0.10.0-dev", path = "../externalities", default-features = false }
[dev-dependencies]
rand = "0.7.2"
@@ -1,6 +1,6 @@
[package]
name = "sp-maybe-compressed-blob"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -1,6 +1,6 @@
[package]
name = "sp-npos-elections"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,15 +15,15 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-npos-elections-compact = { version = "3.0.0", path = "./compact" }
sp-arithmetic = { version = "3.0.0", default-features = false, path = "../arithmetic" }
sp-core = { version = "3.0.0", default-features = false, path = "../core" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
sp-npos-elections-compact = { version = "4.0.0-dev", path = "./compact" }
sp-arithmetic = { version = "4.0.0-dev", default-features = false, path = "../arithmetic" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" }
[dev-dependencies]
substrate-test-utils = { version = "3.0.0", path = "../../test-utils" }
substrate-test-utils = { version = "4.0.0-dev", path = "../../test-utils" }
rand = "0.7.3"
sp-runtime = { version = "3.0.0", path = "../runtime" }
sp-runtime = { version = "4.0.0-dev", path = "../runtime" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "sp-npos-elections-compact"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -22,6 +22,6 @@ proc-macro-crate = "1.0.0"
[dev-dependencies]
parity-scale-codec = "2.0.1"
sp-arithmetic = { path = "../../arithmetic" }
sp-npos-elections = { path = ".." }
sp-arithmetic = { path = "../../arithmetic" , version = "4.0.0-dev"}
sp-npos-elections = { path = ".." , version = "4.0.0-dev"}
trybuild = "1.0.42"
@@ -17,10 +17,10 @@ targets = ["x86_64-unknown-linux-gnu"]
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
honggfuzz = "0.5"
rand = { version = "0.7.3", features = ["std", "small_rng"] }
sp-arithmetic = { version = "3.0.0", path = "../../arithmetic" }
sp-npos-elections = { version = "3.0.0", path = ".." }
sp-runtime = { version = "3.0.0", path = "../../runtime" }
sp-std = { version = "3.0.0", path = "../../std" }
sp-arithmetic = { version = "4.0.0-dev", path = "../../arithmetic" }
sp-npos-elections = { version = "4.0.0-dev", path = ".." }
sp-runtime = { version = "4.0.0-dev", path = "../../runtime" }
sp-std = { version = "4.0.0-dev", path = "../../std" }
structopt = "0.3.21"
[[bin]]
+5 -5
View File
@@ -1,7 +1,7 @@
[package]
description = "Substrate offchain workers primitives"
name = "sp-offchain"
version = "3.0.0"
version = "4.0.0-dev"
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 = "3.0.0", default-features = false, path = "../core" }
sp-api = { version = "3.0.0", default-features = false, path = "../api" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" }
[dev-dependencies]
sp-state-machine = { version = "0.9.0", default-features = false, path = "../state-machine" }
sp-state-machine = { version = "0.10.0-dev", default-features = false, path = "../state-machine" }
[features]
default = ["std"]
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-rpc"
version = "3.0.0"
version = "4.0.0-dev"
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 = "3.0.0", path = "../core" }
sp-core = { version = "4.0.0-dev", path = "../core" }
tracing-core = "0.1.17"
rustc-hash = "1.1.0"
@@ -1,6 +1,6 @@
[package]
name = "sp-runtime-interface"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,22 +14,22 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-wasm-interface = { version = "3.0.0", path = "../wasm-interface", default-features = false }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-tracing = { version = "3.0.0", default-features = false, path = "../tracing" }
sp-runtime-interface-proc-macro = { version = "3.0.0", path = "proc-macro" }
sp-externalities = { version = "0.9.0", optional = true, path = "../externalities" }
sp-wasm-interface = { version = "4.0.0-dev", path = "../wasm-interface", default-features = false }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
sp-tracing = { version = "4.0.0-dev", default-features = false, path = "../tracing" }
sp-runtime-interface-proc-macro = { version = "4.0.0-dev", path = "proc-macro" }
sp-externalities = { version = "0.10.0-dev", optional = true, path = "../externalities" }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
static_assertions = "1.0.0"
primitive-types = { version = "0.10.0", default-features = false }
sp-storage = { version = "3.0.0", default-features = false, path = "../storage" }
sp-storage = { version = "4.0.0-dev", default-features = false, path = "../storage" }
impl-trait-for-tuples = "0.2.1"
[dev-dependencies]
sp-runtime-interface-test-wasm = { version = "2.0.0", path = "test-wasm" }
sp-state-machine = { version = "0.9.0", path = "../state-machine" }
sp-core = { version = "3.0.0", path = "../core" }
sp-io = { version = "3.0.0", path = "../io" }
sp-state-machine = { version = "0.10.0-dev", path = "../state-machine" }
sp-core = { version = "4.0.0-dev", path = "../core" }
sp-io = { version = "4.0.0-dev", path = "../io" }
rustversion = "1.0.0"
trybuild = "1.0.42"
@@ -1,6 +1,6 @@
[package]
name = "sp-runtime-interface-proc-macro"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -13,13 +13,13 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-runtime-interface = { version = "3.0.0", default-features = false, path = "../" }
sp-std = { version = "3.0.0", default-features = false, path = "../../std" }
sp-io = { version = "3.0.0", default-features = false, path = "../../io" }
sp-core = { version = "3.0.0", default-features = false, path = "../../core" }
sp-runtime-interface = { version = "4.0.0-dev", default-features = false, path = "../" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../../std" }
sp-io = { version = "4.0.0-dev", default-features = false, path = "../../io" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../../core" }
[build-dependencies]
substrate-wasm-builder = { version = "4.0.0", path = "../../../utils/wasm-builder" }
substrate-wasm-builder = { version = "5.0.0-dev", path = "../../../utils/wasm-builder" }
[features]
default = [ "std" ]
@@ -13,13 +13,13 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-runtime-interface = { version = "3.0.0", default-features = false, path = "../" }
sp-std = { version = "3.0.0", default-features = false, path = "../../std" }
sp-io = { version = "3.0.0", default-features = false, path = "../../io" }
sp-core = { version = "3.0.0", default-features = false, path = "../../core" }
sp-runtime-interface = { version = "4.0.0-dev", default-features = false, path = "../" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../../std" }
sp-io = { version = "4.0.0-dev", default-features = false, path = "../../io" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../../core" }
[build-dependencies]
substrate-wasm-builder = { version = "4.0.0", path = "../../../utils/wasm-builder" }
substrate-wasm-builder = { version = "5.0.0-dev", path = "../../../utils/wasm-builder" }
[features]
default = [ "std" ]
@@ -12,14 +12,14 @@ repository = "https://github.com/paritytech/substrate/"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-runtime-interface = { version = "3.0.0", path = "../" }
sc-executor = { version = "0.9.0", path = "../../../client/executor" }
sc-executor-common = { version = "0.9.0", path = "../../../client/executor/common" }
sp-runtime-interface = { version = "4.0.0-dev", path = "../" }
sc-executor = { version = "0.10.0-dev", path = "../../../client/executor" }
sc-executor-common = { version = "0.10.0-dev", path = "../../../client/executor/common" }
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.9.0", path = "../../state-machine" }
sp-runtime = { version = "3.0.0", path = "../../runtime" }
sp-core = { version = "3.0.0", path = "../../core" }
sp-io = { version = "3.0.0", path = "../../io" }
sp-state-machine = { version = "0.10.0-dev", path = "../../state-machine" }
sp-runtime = { version = "4.0.0-dev", path = "../../runtime" }
sp-core = { version = "4.0.0-dev", path = "../../core" }
sp-io = { version = "4.0.0-dev", path = "../../io" }
tracing = "0.1.25"
tracing-core = "0.1.17"
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-runtime"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -17,11 +17,11 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "2.2.0", default-features = false, features = ["derive", "max-encoded-len"] }
sp-core = { version = "3.0.0", default-features = false, path = "../core" }
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../application-crypto" }
sp-arithmetic = { version = "3.0.0", default-features = false, path = "../arithmetic" }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-io = { version = "3.0.0", default-features = false, path = "../io" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" }
sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../application-crypto" }
sp-arithmetic = { version = "4.0.0-dev", default-features = false, path = "../arithmetic" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
sp-io = { version = "4.0.0-dev", default-features = false, path = "../io" }
log = { version = "0.4.14", default-features = false }
paste = "1.0"
rand = { version = "0.7.2", optional = true }
@@ -33,10 +33,10 @@ either = { version = "1.5", default-features = false }
[dev-dependencies]
serde_json = "1.0.41"
rand = "0.7.2"
sp-state-machine = { version = "0.9.0", path = "../state-machine" }
sp-api = { version = "3.0.0", path = "../api" }
sp-state-machine = { version = "0.10.0-dev", path = "../state-machine" }
sp-api = { version = "4.0.0-dev", path = "../api" }
substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/runtime/client" }
sp-tracing = { version = "3.0.0", path = "../../primitives/tracing" }
sp-tracing = { version = "4.0.0-dev", path = "../../primitives/tracing" }
[features]
bench = []
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-sandbox"
version = "0.9.0"
version = "0.10.0-dev"
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.9.0", optional = true }
sp-core = { version = "3.0.0", default-features = false, path = "../core" }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-io = { version = "3.0.0", default-features = false, path = "../io" }
sp-wasm-interface = { version = "3.0.0", default-features = false, path = "../wasm-interface" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
sp-io = { version = "4.0.0-dev", default-features = false, path = "../io" }
sp-wasm-interface = { version = "4.0.0-dev", default-features = false, path = "../wasm-interface" }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
[dev-dependencies]
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-session"
version = "3.0.0"
version = "4.0.0-dev"
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 = "2.0.0", default-features = false, features = ["derive"] }
sp-api = { version = "3.0.0", default-features = false, path = "../api" }
sp-core = { version = "3.0.0", default-features = false, path = "../core" }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-staking = { version = "3.0.0", default-features = false, path = "../staking" }
sp-runtime = { version = "3.0.0", optional = true, path = "../runtime" }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
sp-staking = { version = "4.0.0-dev", default-features = false, path = "../staking" }
sp-runtime = { version = "4.0.0-dev", optional = true, path = "../runtime" }
[features]
default = [ "std" ]
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-staking"
version = "3.0.0"
version = "4.0.0-dev"
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 = "2.0.0", default-features = false, features = ["derive"] }
sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "sp-state-machine"
version = "0.9.0"
version = "0.10.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate State Machine"
edition = "2018"
@@ -20,20 +20,20 @@ parking_lot = { version = "0.11.1", optional = true }
hash-db = { version = "0.15.2", default-features = false }
trie-db = { version = "0.22.6", default-features = false }
trie-root = { version = "0.16.0", default-features = false }
sp-trie = { version = "3.0.0", path = "../trie", default-features = false }
sp-core = { version = "3.0.0", path = "../core", default-features = false }
sp-trie = { version = "4.0.0-dev", path = "../trie", default-features = false }
sp-core = { version = "4.0.0-dev", path = "../core", default-features = false }
sp-panic-handler = { version = "3.0.0", path = "../panic-handler", optional = true }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
num-traits = { version = "0.2.8", default-features = false }
rand = { version = "0.7.2", optional = true }
sp-externalities = { version = "0.9.0", path = "../externalities", default-features = false }
sp-externalities = { version = "0.10.0-dev", path = "../externalities", default-features = false }
smallvec = "1.4.1"
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
tracing = { version = "0.1.22", optional = true }
[dev-dependencies]
hex-literal = "0.3.1"
sp-runtime = { version = "3.0.0", path = "../runtime" }
sp-runtime = { version = "4.0.0-dev", path = "../runtime" }
pretty_assertions = "0.6.1"
[features]
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-std"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-storage"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
description = "Storage related primitives"
@@ -14,7 +14,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-std = { version = "4.0.0-dev", 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"
+6 -6
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-tasks"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,11 +15,11 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
log = { version = "0.4.8", optional = true }
sp-core = { version = "3.0.0", default-features = false, path = "../core" }
sp-externalities = { version = "0.9.0", optional = true, path = "../externalities" }
sp-io = { version = "3.0.0", default-features = false, path = "../io" }
sp-runtime-interface = { version = "3.0.0", default-features = false, path = "../runtime-interface" }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" }
sp-externalities = { version = "0.10.0-dev", optional = true, path = "../externalities" }
sp-io = { version = "4.0.0-dev", default-features = false, path = "../io" }
sp-runtime-interface = { version = "4.0.0-dev", default-features = false, path = "../runtime-interface" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
[dev-dependencies]
codec = { package = "parity-scale-codec", default-features = false, version = "2.0.0" }
@@ -12,11 +12,11 @@ publish = false
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../application-crypto" }
sp-application-crypto = { version = "4.0.0-dev", default-features = false, path = "../application-crypto" }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
sp-core = { version = "3.0.0", default-features = false, path = "../core" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" }
parity-util-mem = { version = "0.10.0", default-features = false, features = ["primitive-types"] }
[features]
+5 -5
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-timestamp"
version = "3.0.0"
version = "4.0.0-dev"
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 = "3.0.0", default-features = false, path = "../api" }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
sp-inherents = { version = "3.0.0", default-features = false, path = "../inherents" }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inherents" }
wasm-timer = { version = "0.2", optional = true }
thiserror = { version = "1.0.21", optional = true }
log = { version = "0.4.8", optional = true }
+2 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-tracing"
version = "3.0.0"
version = "4.0.0-dev"
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 = "3.0.0", path = "../std", default-features = false}
sp-std = { version = "4.0.0-dev", path = "../std", default-features = false}
codec = { version = "2.0.0", package = "parity-scale-codec", default-features = false, features = ["derive"]}
tracing = { version = "0.1.25", default-features = false }
tracing-core = { version = "0.1.17", default-features = false }
@@ -1,6 +1,6 @@
[package]
name = "sp-transaction-pool"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,8 +14,8 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "3.0.0", default-features = false, path = "../api" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" }
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" }
[features]
default = [ "std" ]
@@ -1,6 +1,6 @@
[package]
name = "sp-transaction-storage-proof"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Transaction storage proof primitives"
edition = "2018"
@@ -13,11 +13,11 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-inherents = { version = "3.0.0", default-features = false, path = "../inherents" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-trie = { version = "3.0.0", optional = true, path = "../trie" }
sp-core = { version = "3.0.0", path = "../core", optional = true }
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../inherents" }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
sp-trie = { version = "4.0.0-dev", optional = true, path = "../trie" }
sp-core = { version = "4.0.0-dev", path = "../core", optional = true }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
log = { version = "0.4.8", optional = true }
async-trait = { version = "0.1.48", optional = true }
+4 -4
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-trie"
version = "3.0.0"
version = "4.0.0-dev"
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 = "2.0.0", default-features = false }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
hash-db = { version = "0.15.2", default-features = false }
trie-db = { version = "0.22.6", default-features = false }
trie-root = { version = "0.16.0", default-features = false }
memory-db = { version = "0.27.0", default-features = false }
sp-core = { version = "3.0.0", default-features = false, path = "../core" }
sp-core = { version = "4.0.0-dev", default-features = false, path = "../core" }
[dev-dependencies]
trie-bench = "0.28.0"
trie-standardmap = "0.15.2"
criterion = "0.3.3"
hex-literal = "0.3.1"
sp-runtime = { version = "3.0.0", path = "../runtime" }
sp-runtime = { version = "4.0.0-dev", path = "../runtime" }
[features]
default = ["std"]
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-utils"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
+4 -4
View File
@@ -1,6 +1,6 @@
[package]
name = "sp-version"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -18,9 +18,9 @@ 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 = "2.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "3.0.0", default-features = false, path = "../std" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" }
sp-version-proc-macro = { version = "3.0.0", default-features = false, path = "proc-macro" }
sp-std = { version = "4.0.0-dev", default-features = false, path = "../std" }
sp-runtime = { version = "4.0.0-dev", default-features = false, path = "../runtime" }
sp-version-proc-macro = { version = "4.0.0-dev", default-features = false, path = "proc-macro" }
parity-wasm = { version = "0.42.2", optional = true }
thiserror = { version = "1.0.21", optional = true }
@@ -1,6 +1,6 @@
[package]
name = "sp-version-proc-macro"
version = "3.0.0"
version = "4.0.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -23,4 +23,4 @@ proc-macro-crate = "1.0.0"
codec = { package = "parity-scale-codec", version = "2.0.0", features = [ "derive" ] }
[dev-dependencies]
sp-version = { version = "3.0.0", path = ".." }
sp-version = { version = "4.0.0-dev", path = ".." }
@@ -1,6 +1,6 @@
[package]
name = "sp-wasm-interface"
version = "3.0.0"
version = "4.0.0-dev"
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.9.0", optional = true }
impl-trait-for-tuples = "0.2.1"
sp-std = { version = "3.0.0", path = "../std", default-features = false }
sp-std = { version = "4.0.0-dev", path = "../std", default-features = false }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
[features]