Releasing rc4 – Rhinoceros (#6515)

Co-authored-by: Martin Pugh <pugh@s3kr.it>
This commit is contained in:
Benjamin Kampmann
2020-06-25 23:18:43 +02:00
committed by GitHub
parent f53e5355f8
commit f6ebd5f87d
188 changed files with 1876 additions and 1823 deletions
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-assets"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,16 +15,16 @@ targets = ["x86_64-unknown-linux-gnu"]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
# Needed for various traits. In our case, `OnFinalize`.
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
# Needed for type-safe access to storage DB.
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
# `system` module provides us with all sorts of useful stuff and macros depend on it being around.
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc3", path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc4", path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-atomic-swap"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,15 +14,15 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
[dev-dependencies]
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+13 -13
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-aura"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,23 +12,23 @@ description = "FRAME AURA consensus pallet"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/application-crypto" }
sp-application-crypto = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/application-crypto" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-inherents = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/inherents" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-inherents = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/inherents" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
serde = { version = "1.0.101", optional = true }
pallet-session = { version = "2.0.0-rc3", default-features = false, path = "../session" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
sp-consensus-aura = { version = "0.8.0-rc3", path = "../../primitives/consensus/aura", default-features = false }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/timestamp" }
pallet-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../timestamp" }
pallet-session = { version = "2.0.0-rc4", default-features = false, path = "../session" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
sp-consensus-aura = { version = "0.8.0-rc4", path = "../../primitives/consensus/aura", default-features = false }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/timestamp" }
pallet-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../timestamp" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc4", path = "../../primitives/io" }
lazy_static = "1.4.0"
parking_lot = "0.10.0"
+11 -11
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-authority-discovery"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,20 +12,20 @@ description = "FRAME pallet for authority discovery"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-authority-discovery = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/authority-discovery" }
sp-application-crypto = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/application-crypto" }
sp-authority-discovery = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/authority-discovery" }
sp-application-crypto = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/application-crypto" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
serde = { version = "1.0.101", optional = true }
pallet-session = { version = "2.0.0-rc3", features = ["historical" ], path = "../session", default-features = false }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-session = { version = "2.0.0-rc4", features = ["historical" ], path = "../session", default-features = false }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/staking" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/staking" }
[features]
default = ["std"]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-authorship"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
description = "Block and Uncle Author tracking for the FRAME"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
@@ -13,17 +13,17 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-inherents = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/inherents" }
sp-authorship = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/authorship" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-inherents = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/inherents" }
sp-authorship = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/authorship" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
impl-trait-for-tuples = "0.1.3"
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc4", path = "../../primitives/io" }
[features]
default = ["std"]
+15 -15
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-babe"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,22 +14,22 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true }
sp-inherents = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/inherents" }
sp-application-crypto = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/application-crypto" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../timestamp" }
sp-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/timestamp" }
pallet-session = { version = "2.0.0-rc3", default-features = false, path = "../session" }
sp-consensus-babe = { version = "0.8.0-rc3", default-features = false, path = "../../primitives/consensus/babe" }
sp-consensus-vrf = { version = "0.8.0-rc3", default-features = false, path = "../../primitives/consensus/vrf" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-inherents = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/inherents" }
sp-application-crypto = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/application-crypto" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
pallet-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../timestamp" }
sp-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/timestamp" }
pallet-session = { version = "2.0.0-rc4", default-features = false, path = "../session" }
sp-consensus-babe = { version = "0.8.0-rc4", default-features = false, path = "../../primitives/consensus/babe" }
sp-consensus-vrf = { version = "0.8.0-rc4", default-features = false, path = "../../primitives/consensus/vrf" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
[features]
default = ["std"]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-balances"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,16 +14,16 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-transaction-payment = { version = "2.0.0-rc3", path = "../transaction-payment" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-transaction-payment = { version = "2.0.0-rc4", path = "../transaction-payment" }
[features]
default = ["std"]
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-benchmark"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,12 +14,12 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "frame-benchmarking"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,13 +15,13 @@ targets = ["x86_64-unknown-linux-gnu"]
linregress = "0.1"
paste = "0.1"
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
sp-api = { version = "2.0.0-rc3", path = "../../primitives/api", default-features = false }
sp-runtime-interface = { version = "2.0.0-rc3", path = "../../primitives/runtime-interface", default-features = false }
sp-runtime = { version = "2.0.0-rc3", path = "../../primitives/runtime", default-features = false }
sp-std = { version = "2.0.0-rc3", path = "../../primitives/std", default-features = false }
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-api = { version = "2.0.0-rc4", path = "../../primitives/api", default-features = false }
sp-runtime-interface = { version = "2.0.0-rc4", path = "../../primitives/runtime-interface", default-features = false }
sp-runtime = { version = "2.0.0-rc4", path = "../../primitives/runtime", default-features = false }
sp-std = { version = "2.0.0-rc4", path = "../../primitives/std", default-features = false }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io", default-features = false }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[features]
default = [ "std" ]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-collective"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,17 +14,17 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
hex-literal = "0.2.1"
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-contracts"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -17,23 +17,23 @@ pwasm-utils = { version = "0.12.0", default-features = false }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
parity-wasm = { version = "0.41.0", default-features = false }
wasmi-validation = { version = "0.3.0", default-features = false }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-sandbox = { version = "0.8.0-rc3", default-features = false, path = "../../primitives/sandbox" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-contracts-primitives = { version = "2.0.0-rc3", default-features = false, path = "common" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-sandbox = { version = "0.8.0-rc4", default-features = false, path = "../../primitives/sandbox" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
pallet-contracts-primitives = { version = "2.0.0-rc4", default-features = false, path = "common" }
[dev-dependencies]
wabt = "0.9.2"
assert_matches = "1.3.0"
hex-literal = "0.2.1"
pretty_assertions = "0.6.1"
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-timestamp = { version = "2.0.0-rc3", path = "../timestamp" }
pallet-randomness-collective-flip = { version = "2.0.0-rc3", path = "../randomness-collective-flip" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
pallet-timestamp = { version = "2.0.0-rc4", path = "../timestamp" }
pallet-randomness-collective-flip = { version = "2.0.0-rc4", path = "../randomness-collective-flip" }
[features]
default = ["std"]
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-contracts-primitives"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,8 +14,8 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
# This crate should not rely on any of the frame primitives.
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-contracts-rpc"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -16,14 +16,14 @@ codec = { package = "parity-scale-codec", version = "1.3.1" }
jsonrpc-core = "14.2.0"
jsonrpc-core-client = "14.2.0"
jsonrpc-derive = "14.2.1"
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-rpc = { version = "2.0.0-rc3", path = "../../../primitives/rpc" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-rpc = { version = "2.0.0-rc4", path = "../../../primitives/rpc" }
serde = { version = "1.0.101", features = ["derive"] }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc3", path = "../../../primitives/api" }
pallet-contracts-primitives = { version = "2.0.0-rc3", path = "../common" }
pallet-contracts-rpc-runtime-api = { version = "0.8.0-rc3", path = "./runtime-api" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc4", path = "../../../primitives/api" }
pallet-contracts-primitives = { version = "2.0.0-rc4", path = "../common" }
pallet-contracts-rpc-runtime-api = { version = "0.8.0-rc4", path = "./runtime-api" }
[dev-dependencies]
serde_json = "1.0.41"
@@ -1,6 +1,6 @@
[package]
name = "pallet-contracts-rpc-runtime-api"
version = "0.8.0-rc3"
version = "0.8.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,11 +12,11 @@ description = "Runtime API definition required by Contracts RPC extensions."
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "2.0.0-rc3", default-features = false, path = "../../../../primitives/api" }
sp-api = { version = "2.0.0-rc4", default-features = false, path = "../../../../primitives/api" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../../../primitives/runtime" }
pallet-contracts-primitives = { version = "2.0.0-rc3", default-features = false, path = "../../common" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../../primitives/runtime" }
pallet-contracts-primitives = { version = "2.0.0-rc4", default-features = false, path = "../../common" }
[features]
default = ["std"]
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-democracy"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,19 +14,19 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-scheduler = { version = "2.0.0-rc3", path = "../scheduler" }
sp-storage = { version = "2.0.0-rc3", path = "../../primitives/storage" }
substrate-test-utils = { version = "2.0.0-rc3", path = "../../test-utils" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
pallet-scheduler = { version = "2.0.0-rc4", path = "../scheduler" }
sp-storage = { version = "2.0.0-rc4", path = "../../primitives/storage" }
substrate-test-utils = { version = "2.0.0-rc4", path = "../../test-utils" }
hex-literal = "0.2.1"
[features]
+11 -11
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-elections-phragmen"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,19 +14,19 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-npos-elections = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/npos-elections" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-npos-elections = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/npos-elections" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
hex-literal = "0.2.1"
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
substrate-test-utils = { version = "2.0.0-rc3", path = "../../test-utils" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
substrate-test-utils = { version = "2.0.0-rc4", path = "../../test-utils" }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-elections"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,16 +14,16 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
hex-literal = "0.2.1"
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-evm"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,14 +14,14 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../timestamp" }
pallet-balances = { version = "2.0.0-rc3", default-features = false, path = "../balances" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
pallet-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../timestamp" }
pallet-balances = { version = "2.0.0-rc4", default-features = false, path = "../balances" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
primitive-types = { version = "0.7.0", default-features = false, features = ["rlp"] }
rlp = { version = "0.4", default-features = false }
evm = { version = "0.16", default-features = false }
@@ -1,6 +1,6 @@
[package]
name = "pallet-example-offchain-worker"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Unlicense"
@@ -13,13 +13,13 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
serde = { version = "1.0.101", optional = true }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
lite-json = { version = "0.1", default-features = false }
[features]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-example"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Unlicense"
@@ -14,17 +14,17 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-balances = { version = "2.0.0-rc3", default-features = false, path = "../balances" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
pallet-balances = { version = "2.0.0-rc4", default-features = false, path = "../balances" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core", default-features = false }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core", default-features = false }
[features]
default = ["std"]
+13 -13
View File
@@ -1,6 +1,6 @@
[package]
name = "frame-executive"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -13,22 +13,22 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
serde = { version = "1.0.101", optional = true }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-tracing = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/tracing" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-tracing = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/tracing" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
[dev-dependencies]
hex-literal = "0.2.1"
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc3", path = "../../primitives/io" }
pallet-indices = { version = "2.0.0-rc3", path = "../indices" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-transaction-payment = { version = "2.0.0-rc3", path = "../transaction-payment" }
sp-version = { version = "2.0.0-rc3", path = "../../primitives/version" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc4", path = "../../primitives/io" }
pallet-indices = { version = "2.0.0-rc4", path = "../indices" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
pallet-transaction-payment = { version = "2.0.0-rc4", path = "../transaction-payment" }
sp-version = { version = "2.0.0-rc4", path = "../../primitives/version" }
[features]
default = ["std"]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-finality-tracker"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -16,17 +16,17 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
sp-inherents = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/inherents" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-finality-tracker = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/finality-tracker" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-inherents = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/inherents" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-finality-tracker = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/finality-tracker" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
impl-trait-for-tuples = "0.1.3"
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
[features]
default = ["std"]
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-generic-asset"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Centrality Developers <support@centrality.ai>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,14 +14,14 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-io ={ version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc4", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
[features]
default = ["std"]
+19 -19
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-grandpa"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,27 +14,27 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-application-crypto = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/application-crypto" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-finality-grandpa = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/finality-grandpa" }
sp-session = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/session" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-session = { version = "2.0.0-rc3", default-features = false, path = "../session" }
pallet-finality-tracker = { version = "2.0.0-rc3", default-features = false, path = "../finality-tracker" }
sp-application-crypto = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/application-crypto" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-finality-grandpa = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/finality-grandpa" }
sp-session = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/session" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
pallet-session = { version = "2.0.0-rc4", default-features = false, path = "../session" }
pallet-finality-tracker = { version = "2.0.0-rc4", default-features = false, path = "../finality-tracker" }
[dev-dependencies]
grandpa = { package = "finality-grandpa", version = "0.12.3", features = ["derive-codec"] }
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-keyring = { version = "2.0.0-rc3", path = "../../primitives/keyring" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-offences = { version = "2.0.0-rc3", path = "../offences" }
pallet-staking = { version = "2.0.0-rc3", path = "../staking" }
pallet-staking-reward-curve = { version = "2.0.0-rc3", path = "../staking/reward-curve" }
pallet-timestamp = { version = "2.0.0-rc3", path = "../timestamp" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
sp-keyring = { version = "2.0.0-rc4", path = "../../primitives/keyring" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
pallet-offences = { version = "2.0.0-rc4", path = "../offences" }
pallet-staking = { version = "2.0.0-rc4", path = "../staking" }
pallet-staking-reward-curve = { version = "2.0.0-rc4", path = "../staking/reward-curve" }
pallet-timestamp = { version = "2.0.0-rc4", path = "../timestamp" }
[features]
default = ["std"]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-identity"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,16 +15,16 @@ targets = ["x86_64-unknown-linux-gnu"]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
enumflags2 = { version = "0.6.2" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-im-online"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,20 +12,20 @@ description = "FRAME's I'm online pallet"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/application-crypto" }
pallet-authorship = { version = "2.0.0-rc3", default-features = false, path = "../authorship" }
sp-application-crypto = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/application-crypto" }
pallet-authorship = { version = "2.0.0-rc4", default-features = false, path = "../authorship" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
serde = { version = "1.0.101", optional = true }
pallet-session = { version = "2.0.0-rc3", default-features = false, path = "../session" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-session = { version = "2.0.0-rc4", default-features = false, path = "../session" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[features]
default = ["std", "pallet-session/historical"]
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-indices"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,18 +14,18 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-keyring = { version = "2.0.0-rc3", optional = true, path = "../../primitives/keyring" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-keyring = { version = "2.0.0-rc4", optional = true, path = "../../primitives/keyring" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-membership"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,14 +14,14 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
[features]
default = ["std"]
+3 -3
View File
@@ -1,6 +1,6 @@
[package]
name = "frame-metadata"
version = "11.0.0-rc3"
version = "11.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,8 +14,8 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
[features]
default = ["std"]
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-multisig"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,18 +14,18 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-nicks"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,15 +14,15 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-offences"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,18 +12,18 @@ description = "FRAME offences pallet"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
pallet-balances = { version = "2.0.0-rc3", default-features = false, path = "../balances" }
pallet-balances = { version = "2.0.0-rc4", default-features = false, path = "../balances" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
serde = { version = "1.0.101", optional = true }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "pallet-offences-benchmarking"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -13,27 +13,27 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../../benchmarking" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../../system" }
pallet-babe = { version = "2.0.0-rc3", default-features = false, path = "../../babe" }
pallet-balances = { version = "2.0.0-rc3", default-features = false, path = "../../balances" }
pallet-grandpa = { version = "2.0.0-rc3", default-features = false, path = "../../grandpa" }
pallet-im-online = { version = "2.0.0-rc3", default-features = false, path = "../../im-online" }
pallet-offences = { version = "2.0.0-rc3", default-features = false, features = ["runtime-benchmarks"], path = "../../offences" }
pallet-session = { version = "2.0.0-rc3", default-features = false, path = "../../session" }
pallet-staking = { version = "2.0.0-rc3", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/staking" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/std" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../../benchmarking" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../../system" }
pallet-babe = { version = "2.0.0-rc4", default-features = false, path = "../../babe" }
pallet-balances = { version = "2.0.0-rc4", default-features = false, path = "../../balances" }
pallet-grandpa = { version = "2.0.0-rc4", default-features = false, path = "../../grandpa" }
pallet-im-online = { version = "2.0.0-rc4", default-features = false, path = "../../im-online" }
pallet-offences = { version = "2.0.0-rc4", default-features = false, features = ["runtime-benchmarks"], path = "../../offences" }
pallet-session = { version = "2.0.0-rc4", default-features = false, path = "../../session" }
pallet-staking = { version = "2.0.0-rc4", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/staking" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/std" }
[dev-dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
pallet-staking-reward-curve = { version = "2.0.0-rc3", path = "../../staking/reward-curve" }
pallet-timestamp = { version = "2.0.0-rc3", path = "../../timestamp" }
pallet-staking-reward-curve = { version = "2.0.0-rc4", path = "../../staking/reward-curve" }
pallet-timestamp = { version = "2.0.0-rc4", path = "../../timestamp" }
serde = { version = "1.0.101" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-io = { version = "2.0.0-rc3", path = "../../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-io = { version = "2.0.0-rc4", path = "../../../primitives/io" }
[features]
default = ["std"]
+11 -11
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-proxy"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,19 +14,19 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-utility = { version = "2.0.0-rc3", path = "../utility" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
pallet-utility = { version = "2.0.0-rc4", path = "../utility" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "pallet-randomness-collective-flip"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,14 +14,14 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
safe-mix = { version = "1.0", default-features = false }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-recovery"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,15 +15,15 @@ targets = ["x86_64-unknown-linux-gnu"]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
enumflags2 = { version = "0.6.2" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-scheduler"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Unlicense"
@@ -11,16 +11,16 @@ description = "FRAME example pallet"
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.2.0", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core", default-features = false }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core", default-features = false }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-scored-pool"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,15 +14,15 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
[features]
default = ["std"]
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-session"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,20 +14,20 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-session = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/session" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../timestamp" }
sp-trie = { version = "2.0.0-rc3", optional = true, default-features = false, path = "../../primitives/trie" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-session = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/session" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
pallet-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../timestamp" }
sp-trie = { version = "2.0.0-rc4", optional = true, default-features = false, path = "../../primitives/trie" }
impl-trait-for-tuples = "0.1.3"
[dev-dependencies]
sp-application-crypto = { version = "2.0.0-rc3", path = "../../primitives/application-crypto" }
sp-application-crypto = { version = "2.0.0-rc4", path = "../../primitives/application-crypto" }
lazy_static = "1.4.0"
[features]
+13 -13
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-session-benchmarking"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,22 +12,22 @@ description = "FRAME sessions pallet benchmarking"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/runtime" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../../system" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../../benchmarking" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../../support" }
pallet-staking = { version = "2.0.0-rc3", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
pallet-session = { version = "2.0.0-rc3", default-features = false, path = "../../session" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../../system" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../../benchmarking" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../../support" }
pallet-staking = { version = "2.0.0-rc4", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
pallet-session = { version = "2.0.0-rc4", default-features = false, path = "../../session" }
[dev-dependencies]
serde = { version = "1.0.101" }
codec = { package = "parity-scale-codec", version = "1.3.1", features = ["derive"] }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
pallet-staking-reward-curve = { version = "2.0.0-rc3", path = "../../staking/reward-curve" }
sp-io ={ version = "2.0.0-rc3", path = "../../../primitives/io" }
pallet-timestamp = { version = "2.0.0-rc3", path = "../../timestamp" }
pallet-balances = { version = "2.0.0-rc3", path = "../../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
pallet-staking-reward-curve = { version = "2.0.0-rc4", path = "../../staking/reward-curve" }
sp-io ={ version = "2.0.0-rc4", path = "../../../primitives/io" }
pallet-timestamp = { version = "2.0.0-rc4", path = "../../timestamp" }
pallet-balances = { version = "2.0.0-rc4", path = "../../balances" }
[features]
default = ["std"]
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-society"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,16 +14,16 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
rand_chacha = { version = "0.2", default-features = false }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc3", path = "../../primitives/io" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc4", path = "../../primitives/io" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+19 -19
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-staking"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,29 +15,29 @@ targets = ["x86_64-unknown-linux-gnu"]
static_assertions = "1.1.0"
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-npos-elections = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/npos-elections" }
sp-io ={ version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-session = { version = "2.0.0-rc3", default-features = false, features = ["historical"], path = "../session" }
pallet-authorship = { version = "2.0.0-rc3", default-features = false, path = "../authorship" }
sp-application-crypto = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/application-crypto" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-npos-elections = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/npos-elections" }
sp-io ={ version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-staking = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/staking" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
pallet-session = { version = "2.0.0-rc4", default-features = false, features = ["historical"], path = "../session" }
pallet-authorship = { version = "2.0.0-rc4", default-features = false, path = "../authorship" }
sp-application-crypto = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/application-crypto" }
# Optional imports for benchmarking
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
rand_chacha = { version = "0.2", default-features = false, optional = true }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-storage = { version = "2.0.0-rc3", path = "../../primitives/storage" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
pallet-timestamp = { version = "2.0.0-rc3", path = "../timestamp" }
pallet-staking-reward-curve = { version = "2.0.0-rc3", path = "../staking/reward-curve" }
substrate-test-utils = { version = "2.0.0-rc3", path = "../../test-utils" }
frame-benchmarking = { version = "2.0.0-rc3", path = "../benchmarking" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
sp-storage = { version = "2.0.0-rc4", path = "../../primitives/storage" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
pallet-timestamp = { version = "2.0.0-rc4", path = "../timestamp" }
pallet-staking-reward-curve = { version = "2.0.0-rc4", path = "../staking/reward-curve" }
substrate-test-utils = { version = "2.0.0-rc4", path = "../../test-utils" }
frame-benchmarking = { version = "2.0.0-rc4", path = "../benchmarking" }
rand_chacha = { version = "0.2" }
parking_lot = "0.10.2"
env_logger = "0.7.1"
+13 -13
View File
@@ -15,19 +15,19 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
honggfuzz = "0.5"
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
pallet-staking = { version = "2.0.0-rc3", path = "..", features = ["runtime-benchmarks"] }
pallet-staking-reward-curve = { version = "2.0.0-rc3", path = "../reward-curve" }
pallet-session = { version = "2.0.0-rc3", path = "../../session" }
pallet-indices = { version = "2.0.0-rc3", path = "../../indices" }
pallet-balances = { version = "2.0.0-rc3", path = "../../balances" }
pallet-timestamp = { version = "2.0.0-rc3", path = "../../timestamp" }
frame-system = { version = "2.0.0-rc3", path = "../../system" }
frame-support = { version = "2.0.0-rc3", path = "../../support" }
sp-std = { version = "2.0.0-rc3", path = "../../../primitives/std" }
sp-io ={ version = "2.0.0-rc3", path = "../../../primitives/io" }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-npos-elections = { version = "2.0.0-rc3", path = "../../../primitives/npos-elections" }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
pallet-staking = { version = "2.0.0-rc4", path = "..", features = ["runtime-benchmarks"] }
pallet-staking-reward-curve = { version = "2.0.0-rc4", path = "../reward-curve" }
pallet-session = { version = "2.0.0-rc4", path = "../../session" }
pallet-indices = { version = "2.0.0-rc4", path = "../../indices" }
pallet-balances = { version = "2.0.0-rc4", path = "../../balances" }
pallet-timestamp = { version = "2.0.0-rc4", path = "../../timestamp" }
frame-system = { version = "2.0.0-rc4", path = "../../system" }
frame-support = { version = "2.0.0-rc4", path = "../../support" }
sp-std = { version = "2.0.0-rc4", path = "../../../primitives/std" }
sp-io ={ version = "2.0.0-rc4", path = "../../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-npos-elections = { version = "2.0.0-rc4", path = "../../../primitives/npos-elections" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
[[bin]]
name = "submit_solution"
@@ -1,6 +1,6 @@
[package]
name = "pallet-staking-reward-curve"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -21,4 +21,4 @@ proc-macro2 = "1.0.6"
proc-macro-crate = "0.1.4"
[dev-dependencies]
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
+7 -7
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-sudo"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,14 +14,14 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
[features]
default = ["std"]
+12 -12
View File
@@ -1,6 +1,6 @@
[package]
name = "frame-support"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,25 +15,25 @@ targets = ["x86_64-unknown-linux-gnu"]
log = "0.4"
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
frame-metadata = { version = "11.0.0-rc3", default-features = false, path = "../metadata" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-tracing = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/tracing" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-arithmetic = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/arithmetic" }
sp-inherents = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/inherents" }
frame-support-procedural = { version = "2.0.0-rc3", path = "./procedural" }
frame-metadata = { version = "11.0.0-rc4", default-features = false, path = "../metadata" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-tracing = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/tracing" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-arithmetic = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/arithmetic" }
sp-inherents = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/inherents" }
frame-support-procedural = { version = "2.0.0-rc4", path = "./procedural" }
paste = "0.1.6"
once_cell = { version = "1", default-features = false, optional = true }
sp-state-machine = { version = "0.8.0-rc3", optional = true, path = "../../primitives/state-machine" }
sp-state-machine = { version = "0.8.0-rc4", optional = true, path = "../../primitives/state-machine" }
bitmask = { version = "0.5.0", default-features = false }
impl-trait-for-tuples = "0.1.3"
smallvec = "1.4.0"
[dev-dependencies]
pretty_assertions = "0.6.1"
frame-system = { version = "2.0.0-rc3", path = "../system" }
frame-system = { version = "2.0.0-rc4", path = "../system" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "frame-support-procedural"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
proc-macro = true
[dependencies]
frame-support-procedural-tools = { version = "2.0.0-rc3", path = "./tools" }
frame-support-procedural-tools = { version = "2.0.0-rc4", path = "./tools" }
proc-macro2 = "1.0.6"
quote = "1.0.3"
syn = { version = "1.0.7", features = ["full"] }
@@ -1,6 +1,6 @@
[package]
name = "frame-support-procedural-tools"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,7 +12,7 @@ description = "Proc macro helpers for procedural macros"
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
frame-support-procedural-tools-derive = { version = "2.0.0-rc3", path = "./derive" }
frame-support-procedural-tools-derive = { version = "2.0.0-rc4", path = "./derive" }
proc-macro2 = "1.0.6"
quote = "1.0.3"
syn = { version = "1.0.7", features = ["full", "visit"] }
@@ -1,6 +1,6 @@
[package]
name = "frame-support-procedural-tools-derive"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
+8 -8
View File
@@ -1,6 +1,6 @@
[package]
name = "frame-support-test"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,13 +14,13 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-io ={ version = "2.0.0-rc3", path = "../../../primitives/io", default-features = false }
sp-state-machine = { version = "0.8.0-rc3", optional = true, path = "../../../primitives/state-machine" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../" }
sp-inherents = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/inherents" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/runtime" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/core" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/std" }
sp-io ={ version = "2.0.0-rc4", path = "../../../primitives/io", default-features = false }
sp-state-machine = { version = "0.8.0-rc4", optional = true, path = "../../../primitives/state-machine" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../" }
sp-inherents = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/inherents" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/core" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/std" }
trybuild = "1.0.17"
pretty_assertions = "0.6.1"
rustversion = "1.0.0"
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "frame-system"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,18 +14,18 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io", default-features = false }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-version = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/version" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io", default-features = false }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-version = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/version" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
impl-trait-for-tuples = "0.1.3"
[dev-dependencies]
criterion = "0.2.11"
sp-externalities = { version = "0.8.0-rc3", path = "../../primitives/externalities" }
substrate-test-runtime-client = { version = "2.0.0-rc3", path = "../../test-utils/runtime/client" }
sp-externalities = { version = "0.8.0-rc4", path = "../../primitives/externalities" }
substrate-test-runtime-client = { version = "2.0.0-rc4", path = "../../test-utils/runtime/client" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "frame-system-benchmarking"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -13,16 +13,16 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../../benchmarking" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../../system" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../../support" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../../primitives/core" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/runtime" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../../benchmarking" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../../system" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../../support" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../../primitives/core" }
[dev-dependencies]
serde = { version = "1.0.101" }
sp-io ={ version = "2.0.0-rc3", path = "../../../primitives/io" }
sp-io ={ version = "2.0.0-rc4", path = "../../../primitives/io" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "frame-system-rpc-runtime-api"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -12,7 +12,7 @@ description = "Runtime API definition required by System RPC extensions."
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-api = { version = "2.0.0-rc3", default-features = false, path = "../../../../primitives/api" }
sp-api = { version = "2.0.0-rc4", default-features = false, path = "../../../../primitives/api" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
[features]
+11 -11
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-timestamp"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -16,19 +16,19 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io", optional = true }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-inherents = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/inherents" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-timestamp = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/timestamp" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io", optional = true }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-inherents = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/inherents" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-timestamp = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/timestamp" }
impl-trait-for-tuples = "0.1.3"
[dev-dependencies]
sp-io ={ version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc4", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
[features]
default = ["std"]
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-transaction-payment"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,18 +14,18 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
serde = { version = "1.0.101", optional = true }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-rc3", default-features = false, path = "./rpc/runtime-api" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-rc4", default-features = false, path = "./rpc/runtime-api" }
smallvec = "1.4.0"
[dev-dependencies]
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-storage = { version = "2.0.0-rc3", path = "../../primitives/storage" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
sp-storage = { version = "2.0.0-rc4", path = "../../primitives/storage" }
[features]
default = ["std"]
@@ -1,6 +1,6 @@
[package]
name = "pallet-transaction-payment-rpc"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -16,10 +16,10 @@ codec = { package = "parity-scale-codec", version = "1.3.1" }
jsonrpc-core = "14.2.0"
jsonrpc-core-client = "14.2.0"
jsonrpc-derive = "14.2.1"
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sp-rpc = { version = "2.0.0-rc3", path = "../../../primitives/rpc" }
sp-core = { version = "2.0.0-rc4", path = "../../../primitives/core" }
sp-rpc = { version = "2.0.0-rc4", path = "../../../primitives/rpc" }
serde = { version = "1.0.101", features = ["derive"] }
sp-runtime = { version = "2.0.0-rc3", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc3", path = "../../../primitives/api" }
sp-blockchain = { version = "2.0.0-rc3", path = "../../../primitives/blockchain" }
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-rc3", path = "./runtime-api" }
sp-runtime = { version = "2.0.0-rc4", path = "../../../primitives/runtime" }
sp-api = { version = "2.0.0-rc4", path = "../../../primitives/api" }
sp-blockchain = { version = "2.0.0-rc4", path = "../../../primitives/blockchain" }
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-rc4", path = "./runtime-api" }
@@ -1,6 +1,6 @@
[package]
name = "pallet-transaction-payment-rpc-runtime-api"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -13,11 +13,11 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
sp-api = { version = "2.0.0-rc3", default-features = false, path = "../../../../primitives/api" }
sp-api = { version = "2.0.0-rc4", default-features = false, path = "../../../../primitives/api" }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../../../support" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../../../support" }
[dev-dependencies]
serde_json = "1.0.41"
+9 -9
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-treasury"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,17 +14,17 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
pallet-balances = { version = "2.0.0-rc3", default-features = false, path = "../balances" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
pallet-balances = { version = "2.0.0-rc4", default-features = false, path = "../balances" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
sp-io ={ version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
sp-io ={ version = "2.0.0-rc4", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
[features]
default = ["std"]
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-utility"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -14,18 +14,18 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
sp-core = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/io" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
sp-core = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/core" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-io = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/io" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
[features]
default = ["std"]
+10 -10
View File
@@ -1,6 +1,6 @@
[package]
name = "pallet-vesting"
version = "2.0.0-rc3"
version = "2.0.0-rc4"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "Apache-2.0"
@@ -15,17 +15,17 @@ targets = ["x86_64-unknown-linux-gnu"]
serde = { version = "1.0.101", optional = true }
codec = { package = "parity-scale-codec", version = "1.3.1", default-features = false, features = ["derive"] }
enumflags2 = { version = "0.6.2" }
sp-std = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc3", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc3", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc3", default-features = false, path = "../system" }
frame-benchmarking = { version = "2.0.0-rc3", default-features = false, path = "../benchmarking", optional = true }
sp-std = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/std" }
sp-runtime = { version = "2.0.0-rc4", default-features = false, path = "../../primitives/runtime" }
frame-support = { version = "2.0.0-rc4", default-features = false, path = "../support" }
frame-system = { version = "2.0.0-rc4", default-features = false, path = "../system" }
frame-benchmarking = { version = "2.0.0-rc4", default-features = false, path = "../benchmarking", optional = true }
[dev-dependencies]
sp-io = { version = "2.0.0-rc3", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc3", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc3", path = "../balances" }
sp-storage = { version = "2.0.0-rc3", path = "../../primitives/storage" }
sp-io = { version = "2.0.0-rc4", path = "../../primitives/io" }
sp-core = { version = "2.0.0-rc4", path = "../../primitives/core" }
pallet-balances = { version = "2.0.0-rc4", path = "../balances" }
sp-storage = { version = "2.0.0-rc4", path = "../../primitives/storage" }
hex-literal = "0.2.1"
[features]