mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-15 03:21:06 +00:00
Prepping release of alpha.6 (#5629)
* bumping version * cargo update * adding changelog
This commit is contained in:
committed by
GitHub
parent
889a9763dd
commit
51f9bb3c0e
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-assets"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,20 +8,23 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME asset management pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
|
||||
# Needed for various traits. In our case, `OnFinalize`.
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
# Needed for type-safe access to storage DB.
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-support = { version = "2.0.0-alpha.6", 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-alpha.5", default-features = false, path = "../system" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.5", path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", path = "../../primitives/io" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.6", path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", path = "../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -32,6 +35,3 @@ std = [
|
||||
"frame-support/std",
|
||||
"frame-system/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-aura"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,21 +8,24 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME AURA consensus pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
sp-application-crypto = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-application-crypto = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/application-crypto" }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-inherents = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/inherents" }
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/inherents" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
pallet-session = { version = "2.0.0-alpha.5", default-features = false, path = "../session" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-alpha.5"}
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
sp-consensus-aura = { path = "../../primitives/consensus/aura", default-features = false, version = "0.8.0-alpha.5"}
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-timestamp = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/timestamp" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.5", default-features = false, path = "../timestamp" }
|
||||
pallet-session = { version = "2.0.0-alpha.6", default-features = false, path = "../session" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-alpha.6"}
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
sp-consensus-aura = { path = "../../primitives/consensus/aura", default-features = false, version = "0.8.0-alpha.6"}
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
sp-timestamp = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/timestamp" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.6", default-features = false, path = "../timestamp" }
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -46,6 +49,3 @@ std = [
|
||||
"sp-timestamp/std",
|
||||
"pallet-timestamp/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-authority-discovery"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,21 +8,24 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet for authority discovery"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
sp-authority-discovery = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/authority-discovery" }
|
||||
sp-application-crypto = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-authority-discovery = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/authority-discovery" }
|
||||
sp-application-crypto = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/application-crypto" }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
pallet-session = { version = "2.0.0-alpha.5", features = ["historical" ], path = "../session", default-features = false }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
pallet-session = { version = "2.0.0-alpha.6", features = ["historical" ], path = "../session", default-features = false }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-staking = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/staking" }
|
||||
sp-staking = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/staking" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -39,6 +42,3 @@ std = [
|
||||
"frame-support/std",
|
||||
"frame-system/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-authorship"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
description = "Block and Uncle Author tracking for the FRAME"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
@@ -8,16 +8,19 @@ license = "GPL-3.0"
|
||||
homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-inherents = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/inherents" }
|
||||
sp-authorship = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/authorship" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-alpha.5"}
|
||||
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/inherents" }
|
||||
sp-authorship = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/authorship" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-alpha.6"}
|
||||
impl-trait-for-tuples = "0.1.3"
|
||||
|
||||
[features]
|
||||
@@ -33,6 +36,3 @@ std = [
|
||||
"sp-io/std",
|
||||
"sp-authorship/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-babe"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,24 +8,27 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "Consensus extension module for BABE consensus. Collects on-chain randomness from VRF outputs and manages epoch transitions."
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
sp-inherents = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/inherents" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.5", default-features = false, path = "../timestamp" }
|
||||
sp-timestamp = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/timestamp" }
|
||||
pallet-session = { version = "2.0.0-alpha.5", default-features = false, path = "../session" }
|
||||
sp-consensus-babe = { version = "0.8.0-alpha.5", default-features = false, path = "../../primitives/consensus/babe" }
|
||||
sp-consensus-vrf = { version = "0.8.0-alpha.5", default-features = false, path = "../../primitives/consensus/vrf" }
|
||||
sp-io = { path = "../../primitives/io", default-features = false , version = "2.0.0-alpha.5"}
|
||||
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/inherents" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.6", default-features = false, path = "../timestamp" }
|
||||
sp-timestamp = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/timestamp" }
|
||||
pallet-session = { version = "2.0.0-alpha.6", default-features = false, path = "../session" }
|
||||
sp-consensus-babe = { version = "0.8.0-alpha.6", default-features = false, path = "../../primitives/consensus/babe" }
|
||||
sp-consensus-vrf = { version = "0.8.0-alpha.6", default-features = false, path = "../../primitives/consensus/vrf" }
|
||||
sp-io = { path = "../../primitives/io", default-features = false , version = "2.0.0-alpha.6"}
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -45,6 +48,3 @@ std = [
|
||||
"pallet-session/std",
|
||||
"sp-io/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-balances"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,19 +8,22 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet to manage balances"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
pallet-transaction-payment = { version = "2.0.0-alpha.5", path = "../transaction-payment" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
pallet-transaction-payment = { version = "2.0.0-alpha.6", path = "../transaction-payment" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -35,6 +38,3 @@ std = [
|
||||
"frame-system/std",
|
||||
]
|
||||
runtime-benchmarks = ["frame-benchmarking"]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-benchmark"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,15 +8,18 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "Patterns to benchmark in a FRAME runtime."
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
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-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../benchmarking", optional = true }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -31,6 +34,3 @@ std = [
|
||||
"frame-benchmarking/std",
|
||||
]
|
||||
runtime-benchmarks = ["frame-benchmarking"]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "frame-benchmarking"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,17 +8,20 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "Macro for benchmarking a FRAME runtime."
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
linregress = "0.1"
|
||||
paste = "0.1"
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
|
||||
sp-api = { version = "2.0.0-alpha.5", path = "../../primitives/api", default-features = false }
|
||||
sp-runtime-interface = { version = "2.0.0-alpha.5", path = "../../primitives/runtime-interface", default-features = false }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", path = "../../primitives/runtime", default-features = false }
|
||||
sp-std = { version = "2.0.0-alpha.5", path = "../../primitives/std", default-features = false }
|
||||
sp-io = { path = "../../primitives/io", default-features = false, version = "2.0.0-alpha.5"}
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-api = { version = "2.0.0-alpha.6", path = "../../primitives/api", default-features = false }
|
||||
sp-runtime-interface = { version = "2.0.0-alpha.6", path = "../../primitives/runtime-interface", default-features = false }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", path = "../../primitives/runtime", default-features = false }
|
||||
sp-std = { version = "2.0.0-alpha.6", path = "../../primitives/std", default-features = false }
|
||||
sp-io = { path = "../../primitives/io", default-features = false, version = "2.0.0-alpha.6"}
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[features]
|
||||
default = [ "std" ]
|
||||
@@ -31,6 +34,3 @@ std = [
|
||||
"frame-support/std",
|
||||
"frame-system/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-collective"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,20 +8,23 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "Collective system: Members of a set of account IDs can make their collective feelings known through dispatched calls from one of two specialized origins."
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
hex-literal = "0.2.1"
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -40,6 +43,3 @@ runtime-benchmarks = [
|
||||
"sp-runtime/runtime-benchmarks",
|
||||
"frame-system/runtime-benchmarks",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-contracts"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,28 +8,31 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet for WASM contracts"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||
pwasm-utils = { version = "0.12.0", default-features = false }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", 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-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-sandbox = { version = "0.8.0-alpha.5", default-features = false, path = "../../primitives/sandbox" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
pallet-contracts-primitives = { version = "2.0.0-alpha.5", default-features = false, path = "common" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-sandbox = { version = "0.8.0-alpha.6", default-features = false, path = "../../primitives/sandbox" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
pallet-contracts-primitives = { version = "2.0.0-alpha.6", default-features = false, path = "common" }
|
||||
|
||||
[dev-dependencies]
|
||||
wabt = "0.9.2"
|
||||
assert_matches = "1.3.0"
|
||||
hex-literal = "0.2.1"
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.5", path = "../timestamp" }
|
||||
pallet-randomness-collective-flip = { version = "2.0.0-alpha.5", path = "../randomness-collective-flip" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.6", path = "../timestamp" }
|
||||
pallet-randomness-collective-flip = { version = "2.0.0-alpha.6", path = "../randomness-collective-flip" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -48,6 +51,3 @@ std = [
|
||||
"wasmi-validation/std",
|
||||
"pallet-contracts-primitives/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-contracts-primitives"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,11 +8,14 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "A crate that hosts a common definitions that are relevant for the pallet-contracts."
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
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.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/runtime" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -21,6 +24,3 @@ std = [
|
||||
"sp-runtime/std",
|
||||
"sp-std/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-contracts-rpc"
|
||||
version = "0.8.0-alpha.5"
|
||||
version = "0.8.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,22 +8,22 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "Node-specific RPC methods for interaction with contracts."
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0" }
|
||||
jsonrpc-core = "14.0.3"
|
||||
jsonrpc-core-client = "14.0.5"
|
||||
jsonrpc-derive = "14.0.3"
|
||||
sp-blockchain = { version = "2.0.0-alpha.5", path = "../../../primitives/blockchain" }
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../../primitives/core" }
|
||||
sp-rpc = { version = "2.0.0-alpha.5", path = "../../../primitives/rpc" }
|
||||
sp-blockchain = { version = "2.0.0-alpha.6", path = "../../../primitives/blockchain" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../../primitives/core" }
|
||||
sp-rpc = { version = "2.0.0-alpha.6", path = "../../../primitives/rpc" }
|
||||
serde = { version = "1.0.101", features = ["derive"] }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../primitives/runtime" }
|
||||
sp-api = { version = "2.0.0-alpha.5", path = "../../../primitives/api" }
|
||||
pallet-contracts-primitives = { version = "2.0.0-alpha.5", path = "../common" }
|
||||
pallet-contracts-rpc-runtime-api = { version = "0.8.0-alpha.5", path = "./runtime-api" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", path = "../../../primitives/runtime" }
|
||||
sp-api = { version = "2.0.0-alpha.6", path = "../../../primitives/api" }
|
||||
pallet-contracts-primitives = { version = "2.0.0-alpha.6", path = "../common" }
|
||||
pallet-contracts-rpc-runtime-api = { version = "0.8.0-alpha.6", path = "./runtime-api" }
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.41"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-contracts-rpc-runtime-api"
|
||||
version = "0.8.0-alpha.5"
|
||||
version = "0.8.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,12 +8,15 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "Runtime API definition required by Contracts RPC extensions."
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
sp-api = { version = "2.0.0-alpha.5", default-features = false, path = "../../../../primitives/api" }
|
||||
sp-api = { version = "2.0.0-alpha.6", default-features = false, path = "../../../../primitives/api" }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../../../primitives/runtime" }
|
||||
pallet-contracts-primitives = { version = "2.0.0-alpha.5", default-features = false, path = "../../common" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../../../primitives/runtime" }
|
||||
pallet-contracts-primitives = { version = "2.0.0-alpha.6", default-features = false, path = "../../common" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -24,6 +27,3 @@ std = [
|
||||
"sp-runtime/std",
|
||||
"pallet-contracts-primitives/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-democracy"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,21 +8,24 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet for democracy"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
pallet-scheduler = { version = "2.0.0-alpha.5", path = "../scheduler" }
|
||||
sp-storage = { version = "2.0.0-alpha.5", path = "../../primitives/storage" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
pallet-scheduler = { version = "2.0.0-alpha.6", path = "../scheduler" }
|
||||
sp-storage = { version = "2.0.0-alpha.6", path = "../../primitives/storage" }
|
||||
hex-literal = "0.2.1"
|
||||
|
||||
[features]
|
||||
@@ -42,6 +45,3 @@ runtime-benchmarks = [
|
||||
"frame-system/runtime-benchmarks",
|
||||
"sp-runtime/runtime-benchmarks",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-elections-phragmen"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,22 +8,25 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME election pallet for PHRAGMEN"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-phragmen = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/phragmen" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-phragmen = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/phragmen" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io = { version = "2.0.0-alpha.5", path = "../../primitives/io" }
|
||||
sp-io = { version = "2.0.0-alpha.6", path = "../../primitives/io" }
|
||||
hex-literal = "0.2.1"
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
pallet-scheduler = { version = "2.0.0-alpha.5", path = "../scheduler" }
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
substrate-test-utils = { version = "2.0.0-alpha.5", path = "../../test-utils" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
pallet-scheduler = { version = "2.0.0-alpha.6", path = "../scheduler" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
substrate-test-utils = { version = "2.0.0-alpha.6", path = "../../test-utils" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -37,6 +40,3 @@ std = [
|
||||
"sp-std/std",
|
||||
]
|
||||
runtime-benchmarks = ["frame-support/runtime-benchmarks"]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-elections"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,19 +8,22 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet for elections"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
hex-literal = "0.2.1"
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -34,6 +37,3 @@ std = [
|
||||
"sp-runtime/std",
|
||||
"frame-system/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-evm"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,17 +8,20 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME EVM contracts pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.5", default-features = false, path = "../timestamp" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", default-features = false, path = "../balances" }
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.6", default-features = false, path = "../timestamp" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", default-features = false, path = "../balances" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", 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 }
|
||||
@@ -42,6 +45,3 @@ std = [
|
||||
"evm/std",
|
||||
"pallet-timestamp/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-example-offchain-worker"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "Unlicense"
|
||||
@@ -8,15 +8,18 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME example pallet for offchain worker"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
lite-json = { version = "0.1", default-features = false }
|
||||
|
||||
[features]
|
||||
@@ -32,6 +35,3 @@ std = [
|
||||
"sp-runtime/std",
|
||||
"sp-std/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-example"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "Unlicense"
|
||||
@@ -8,20 +8,23 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME example pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", default-features = false, path = "../balances" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", default-features = false, path = "../balances" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core", default-features = false }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core", default-features = false }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -37,6 +40,3 @@ std = [
|
||||
"sp-std/std"
|
||||
]
|
||||
runtime-benchmarks = ["frame-benchmarking"]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "frame-executive"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,22 +8,25 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME executives engine"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
|
||||
[dev-dependencies]
|
||||
hex-literal = "0.2.1"
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
sp-io ={ path = "../../primitives/io", version = "2.0.0-alpha.5"}
|
||||
pallet-indices = { version = "2.0.0-alpha.5", path = "../indices" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
pallet-transaction-payment = { version = "2.0.0-alpha.5", path = "../transaction-payment" }
|
||||
sp-version = { version = "2.0.0-alpha.5", path = "../../primitives/version" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
sp-io ={ path = "../../primitives/io", version = "2.0.0-alpha.6"}
|
||||
pallet-indices = { version = "2.0.0-alpha.6", path = "../indices" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
pallet-transaction-payment = { version = "2.0.0-alpha.6", path = "../transaction-payment" }
|
||||
sp-version = { version = "2.0.0-alpha.6", path = "../../primitives/version" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -35,6 +38,3 @@ std = [
|
||||
"sp-runtime/std",
|
||||
"sp-std/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-finality-tracker"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -9,21 +9,24 @@ repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME Pallet that tracks the last finalized block, as perceived by block authors."
|
||||
documentation = "https://docs.rs/pallet-finality-tracker"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
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.0", default-features = false }
|
||||
sp-inherents = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/inherents" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-finality-tracker = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/finality-tracker" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/inherents" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-finality-tracker = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/finality-tracker" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
impl-trait-for-tuples = "0.1.3"
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -37,6 +40,3 @@ std = [
|
||||
"sp-finality-tracker/std",
|
||||
"sp-inherents/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-generic-asset"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Centrality Developers <support@centrality.ai>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,17 +8,20 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet for generic asset management"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io ={ version = "2.0.0-alpha.5", path = "../../primitives/io" }
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
sp-io ={ version = "2.0.0-alpha.6", path = "../../primitives/io" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -30,6 +33,3 @@ std =[
|
||||
"frame-support/std",
|
||||
"frame-system/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-grandpa"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,21 +8,24 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet for GRANDPA finality gadget"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-finality-grandpa = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/finality-grandpa" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
pallet-session = { version = "2.0.0-alpha.5", default-features = false, path = "../session" }
|
||||
pallet-finality-tracker = { version = "2.0.0-alpha.5", default-features = false, path = "../finality-tracker" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
sp-finality-grandpa = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/finality-grandpa" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
pallet-session = { version = "2.0.0-alpha.6", default-features = false, path = "../session" }
|
||||
pallet-finality-tracker = { version = "2.0.0-alpha.6", default-features = false, path = "../finality-tracker" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io ={ version = "2.0.0-alpha.5", path = "../../primitives/io" }
|
||||
sp-io ={ version = "2.0.0-alpha.6", path = "../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -39,6 +42,3 @@ std = [
|
||||
"pallet-session/std",
|
||||
"pallet-finality-tracker/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-identity"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,20 +8,23 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME identity management pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
enumflags2 = { version = "0.6.2" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -36,6 +39,3 @@ std = [
|
||||
"frame-system/std",
|
||||
]
|
||||
runtime-benchmarks = ["frame-benchmarking"]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-im-online"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,21 +8,24 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME's I'm online pallet"
|
||||
|
||||
[dependencies]
|
||||
sp-application-crypto = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/application-crypto" }
|
||||
pallet-authorship = { version = "2.0.0-alpha.5", default-features = false, path = "../authorship" }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
pallet-session = { version = "2.0.0-alpha.5", default-features = false, path = "../session" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../benchmarking", optional = true }
|
||||
[dependencies]
|
||||
sp-application-crypto = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/application-crypto" }
|
||||
pallet-authorship = { version = "2.0.0-alpha.6", default-features = false, path = "../authorship" }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
pallet-session = { version = "2.0.0-alpha.6", default-features = false, path = "../session" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
[features]
|
||||
default = ["std", "pallet-session/historical"]
|
||||
@@ -41,6 +44,3 @@ std = [
|
||||
"frame-system/std",
|
||||
]
|
||||
runtime-benchmarks = ["frame-benchmarking"]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-indices"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,19 +8,22 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME indices management pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-keyring = { version = "2.0.0-alpha.5", optional = true, path = "../../primitives/keyring" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-keyring = { version = "2.0.0-alpha.6", optional = true, path = "../../primitives/keyring" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -35,6 +38,3 @@ std = [
|
||||
"sp-runtime/std",
|
||||
"frame-system/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-membership"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,17 +8,20 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME membership management pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -31,6 +34,3 @@ std = [
|
||||
"frame-support/std",
|
||||
"frame-system/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "frame-metadata"
|
||||
version = "11.0.0-alpha.5"
|
||||
version = "11.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,11 +8,14 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "Decodable variant of the RuntimeMetadata."
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -22,6 +25,3 @@ std = [
|
||||
"sp-core/std",
|
||||
"serde",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-nicks"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,18 +8,21 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet for nick management"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -32,6 +35,3 @@ std = [
|
||||
"frame-support/std",
|
||||
"frame-system/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-offences"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,19 +8,22 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME offences pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
pallet-balances = { version = "2.0.0-alpha.5", default-features = false, path = "../balances" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", default-features = false, path = "../balances" }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io = { version = "2.0.0-alpha.5", path = "../../primitives/io" }
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
sp-io = { version = "2.0.0-alpha.6", path = "../../primitives/io" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -35,6 +38,3 @@ std = [
|
||||
"frame-system/std",
|
||||
]
|
||||
runtime-benchmarks = []
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-offences-benchmarking"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,20 +8,23 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME offences pallet benchmarking"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
|
||||
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/std" }
|
||||
sp-staking = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/staking" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../../benchmarking" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../../system" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../../support" }
|
||||
pallet-im-online = { version = "2.0.0-alpha.5", default-features = false, path = "../../im-online" }
|
||||
pallet-offences = { version = "2.0.0-alpha.5", default-features = false, features = ["runtime-benchmarks"], path = "../../offences" }
|
||||
pallet-staking = { version = "2.0.0-alpha.5", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
|
||||
pallet-session = { version = "2.0.0-alpha.5", default-features = false, path = "../../session" }
|
||||
sp-io = { path = "../../../primitives/io", default-features = false, version = "2.0.0-alpha.5"}
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/std" }
|
||||
sp-staking = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/staking" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../../benchmarking" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../../system" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../../support" }
|
||||
pallet-im-online = { version = "2.0.0-alpha.6", default-features = false, path = "../../im-online" }
|
||||
pallet-offences = { version = "2.0.0-alpha.6", default-features = false, features = ["runtime-benchmarks"], path = "../../offences" }
|
||||
pallet-staking = { version = "2.0.0-alpha.6", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
|
||||
pallet-session = { version = "2.0.0-alpha.6", default-features = false, path = "../../session" }
|
||||
sp-io = { path = "../../../primitives/io", default-features = false, version = "2.0.0-alpha.6"}
|
||||
|
||||
|
||||
[features]
|
||||
@@ -38,6 +41,3 @@ std = [
|
||||
"pallet-staking/std",
|
||||
"pallet-session/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-randomness-collective-flip"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,17 +8,20 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME randomness collective flip pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
safe-mix = { version = "1.0", default-features = false }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
sp-io = { version = "2.0.0-alpha.5", path = "../../primitives/io" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
sp-io = { version = "2.0.0-alpha.6", path = "../../primitives/io" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -30,6 +33,3 @@ std = [
|
||||
"sp-runtime/std",
|
||||
"sp-std/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-recovery"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,19 +8,22 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME account recovery pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
enumflags2 = { version = "0.6.2" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -33,6 +36,3 @@ std = [
|
||||
"frame-support/std",
|
||||
"frame-system/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-scheduler"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "Unlicense"
|
||||
@@ -11,15 +11,15 @@ 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-benchmarking = { version = "2.0.0-alpha.4", default-features = false, path = "../benchmarking" }
|
||||
frame-support = { version = "2.0.0-alpha.4", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.4", default-features = false, path = "../system" }
|
||||
sp-runtime = { version = "2.0.0-alpha.4", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.4", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.4", default-features = false, path = "../../primitives/io" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../benchmarking" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.4", path = "../../primitives/core", default-features = false }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core", default-features = false }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-scored-pool"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,18 +8,21 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet for scored pools"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -32,6 +35,3 @@ std = [
|
||||
"frame-support/std",
|
||||
"frame-system/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-session"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,22 +8,25 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME sessions pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.5", default-features = false, path = "../timestamp" }
|
||||
sp-trie = { optional = true, path = "../../primitives/trie", default-features = false, version = "2.0.0-alpha.5"}
|
||||
sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-alpha.5"}
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.6", default-features = false, path = "../timestamp" }
|
||||
sp-trie = { optional = true, path = "../../primitives/trie", default-features = false, version = "2.0.0-alpha.6"}
|
||||
sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-alpha.6"}
|
||||
impl-trait-for-tuples = "0.1.3"
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
sp-application-crypto = { version = "2.0.0-alpha.5", path = "../../primitives/application-crypto" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
sp-application-crypto = { version = "2.0.0-alpha.6", path = "../../primitives/application-crypto" }
|
||||
lazy_static = "1.4.0"
|
||||
|
||||
[features]
|
||||
@@ -40,6 +43,3 @@ std = [
|
||||
"sp-trie/std",
|
||||
"sp-io/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-session-benchmarking"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,23 +8,26 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME sessions pallet benchmarking"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/runtime" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../../system" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../../benchmarking" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../../support" }
|
||||
pallet-staking = { version = "2.0.0-alpha.5", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
|
||||
pallet-session = { version = "2.0.0-alpha.5", default-features = false, path = "../../session" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/runtime" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../../system" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../../benchmarking" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../../support" }
|
||||
pallet-staking = { version = "2.0.0-alpha.6", default-features = false, features = ["runtime-benchmarks"], path = "../../staking" }
|
||||
pallet-session = { version = "2.0.0-alpha.6", default-features = false, path = "../../session" }
|
||||
|
||||
[dev-dependencies]
|
||||
serde = { version = "1.0.101" }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", features = ["derive"] }
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../../primitives/core" }
|
||||
pallet-staking-reward-curve = { version = "2.0.0-alpha.5", path = "../../staking/reward-curve" }
|
||||
sp-io ={ path = "../../../primitives/io", version = "2.0.0-alpha.5"}
|
||||
pallet-timestamp = { version = "2.0.0-alpha.5", path = "../../timestamp" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../../balances" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../../primitives/core" }
|
||||
pallet-staking-reward-curve = { version = "2.0.0-alpha.6", path = "../../staking/reward-curve" }
|
||||
sp-io ={ path = "../../../primitives/io", version = "2.0.0-alpha.6"}
|
||||
pallet-timestamp = { version = "2.0.0-alpha.6", path = "../../timestamp" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../../balances" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -37,6 +40,3 @@ std = [
|
||||
"pallet-staking/std",
|
||||
"pallet-session/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-society"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,19 +8,22 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME society pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-alpha.5"}
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-alpha.6"}
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
rand_chacha = { version = "0.2", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -38,6 +41,3 @@ runtime-benchmarks = [
|
||||
"sp-runtime/runtime-benchmarks",
|
||||
"frame-system/runtime-benchmarks",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-staking"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,38 +8,41 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet staking"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-phragmen = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/phragmen" }
|
||||
sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-alpha.5"}
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
pallet-session = { version = "2.0.0-alpha.5", features = ["historical"], path = "../session", default-features = false }
|
||||
pallet-authorship = { version = "2.0.0-alpha.5", default-features = false, path = "../authorship" }
|
||||
sp-application-crypto = { version = "2.0.0-alpha.4", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-phragmen = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/phragmen" }
|
||||
sp-io ={ path = "../../primitives/io", default-features = false , version = "2.0.0-alpha.6"}
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-staking = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/staking" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
pallet-session = { version = "2.0.0-alpha.6", features = ["historical"], path = "../session", default-features = false }
|
||||
pallet-authorship = { version = "2.0.0-alpha.6", default-features = false, path = "../authorship" }
|
||||
sp-application-crypto = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/application-crypto" }
|
||||
static_assertions = "1.1.0"
|
||||
|
||||
# Optional imports for tesing-utils feature
|
||||
pallet-indices = { version = "2.0.0-alpha.4", optional = true, path = "../indices", default-features = false }
|
||||
sp-core = { version = "2.0.0-alpha.4", optional = true, path = "../../primitives/core", default-features = false }
|
||||
pallet-indices = { version = "2.0.0-alpha.6", optional = true, path = "../indices", default-features = false }
|
||||
sp-core = { version = "2.0.0-alpha.6", optional = true, path = "../../primitives/core", default-features = false }
|
||||
rand = { version = "0.7.3", optional = true, default-features = false }
|
||||
|
||||
# Optional imports for benchmarking
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", 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-alpha.5", path = "../../primitives/core" }
|
||||
sp-storage = { version = "2.0.0-alpha.5", path = "../../primitives/storage" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.5", path = "../timestamp" }
|
||||
pallet-staking-reward-curve = { version = "2.0.0-alpha.5", path = "../staking/reward-curve" }
|
||||
substrate-test-utils = { version = "2.0.0-alpha.5", path = "../../test-utils" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", path = "../benchmarking" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
sp-storage = { version = "2.0.0-alpha.6", path = "../../primitives/storage" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.6", path = "../timestamp" }
|
||||
pallet-staking-reward-curve = { version = "2.0.0-alpha.6", path = "../staking/reward-curve" }
|
||||
substrate-test-utils = { version = "2.0.0-alpha.6", path = "../../test-utils" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", path = "../benchmarking" }
|
||||
rand_chacha = { version = "0.2" }
|
||||
parking_lot = "0.10.0"
|
||||
env_logger = "0.7.1"
|
||||
@@ -72,6 +75,3 @@ runtime-benchmarks = [
|
||||
"rand_chacha",
|
||||
"frame-benchmarking",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-staking-reward-curve"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,6 +8,9 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "Reward Curve for FRAME staking pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
||||
@@ -18,7 +21,4 @@ proc-macro2 = "1.0.6"
|
||||
proc-macro-crate = "0.1.4"
|
||||
|
||||
[dev-dependencies]
|
||||
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../primitives/runtime" }
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
sp-runtime = { version = "2.0.0-alpha.6", path = "../../../primitives/runtime" }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-sudo"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,17 +8,20 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet for sudo"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -31,6 +34,3 @@ std = [
|
||||
"frame-support/std",
|
||||
"frame-system/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "frame-support"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,28 +8,31 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "Support code for the runtime."
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
log = "0.4"
|
||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
frame-metadata = { version = "11.0.0-alpha.5", default-features = false, path = "../metadata" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-arithmetic = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/arithmetic" }
|
||||
sp-inherents = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/inherents" }
|
||||
frame-support-procedural = { version = "2.0.0-alpha.5", path = "./procedural" }
|
||||
frame-metadata = { version = "11.0.0-alpha.6", default-features = false, path = "../metadata" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
sp-arithmetic = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/arithmetic" }
|
||||
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/inherents" }
|
||||
frame-support-procedural = { version = "2.0.0-alpha.6", path = "./procedural" }
|
||||
paste = "0.1.6"
|
||||
once_cell = { version = "1", default-features = false, optional = true }
|
||||
sp-state-machine = { version = "0.8.0-alpha.5", optional = true, path = "../../primitives/state-machine" }
|
||||
sp-state-machine = { version = "0.8.0-alpha.6", optional = true, path = "../../primitives/state-machine" }
|
||||
bitmask = { version = "0.5.0", default-features = false }
|
||||
impl-trait-for-tuples = "0.1.3"
|
||||
tracing = { version = "0.1.10", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
pretty_assertions = "0.6.1"
|
||||
frame-system = { version = "2.0.0-alpha.5", path = "../system" }
|
||||
frame-system = { version = "2.0.0-alpha.6", path = "../system" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -50,6 +53,3 @@ std = [
|
||||
nightly = []
|
||||
strict = []
|
||||
runtime-benchmarks = []
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "frame-support-procedural"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,14 +8,14 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "Proc macro of Support code for the runtime."
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
||||
[dependencies]
|
||||
frame-support-procedural-tools = { version = "2.0.0-alpha.5", path = "./tools" }
|
||||
frame-support-procedural-tools = { version = "2.0.0-alpha.6", path = "./tools" }
|
||||
proc-macro2 = "1.0.6"
|
||||
quote = "1.0.3"
|
||||
syn = { version = "1.0.7", features = ["full"] }
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "frame-support-procedural-tools"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,12 +8,12 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "Proc macro helpers for procedural macros"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
frame-support-procedural-tools-derive = { version = "2.0.0-alpha.5", path = "./derive" }
|
||||
frame-support-procedural-tools-derive = { version = "2.0.0-alpha.6", path = "./derive" }
|
||||
proc-macro2 = "1.0.6"
|
||||
quote = "1.0.3"
|
||||
syn = { version = "1.0.7", features = ["full", "visit"] }
|
||||
proc-macro-crate = "0.1.4"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "frame-support-procedural-tools-derive"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,6 +8,9 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "Use to derive parsing for parsing struct."
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
||||
@@ -15,6 +18,3 @@ proc-macro = true
|
||||
proc-macro2 = "1.0.6"
|
||||
quote = { version = "1.0.3", features = ["proc-macro"] }
|
||||
syn = { version = "1.0.7", features = ["proc-macro" ,"full", "extra-traits", "parsing"] }
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -8,15 +8,18 @@ publish = false
|
||||
homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
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.0", default-features = false, features = ["derive"] }
|
||||
sp-io ={ path = "../../../primitives/io", default-features = false , version = "2.0.0-alpha.5"}
|
||||
sp-state-machine = { version = "0.8.0-alpha.5", optional = true, path = "../../../primitives/state-machine" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../" }
|
||||
sp-inherents = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/inherents" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/core" }
|
||||
sp-io ={ path = "../../../primitives/io", default-features = false , version = "2.0.0-alpha.6"}
|
||||
sp-state-machine = { version = "0.8.0-alpha.6", optional = true, path = "../../../primitives/state-machine" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../" }
|
||||
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/inherents" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/core" }
|
||||
trybuild = "1.0.17"
|
||||
pretty_assertions = "0.6.1"
|
||||
|
||||
@@ -32,6 +35,3 @@ std = [
|
||||
"sp-runtime/std",
|
||||
"sp-state-machine",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "frame-system"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,20 +8,23 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME system module"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { path = "../../primitives/io", default-features = false, version = "2.0.0-alpha.5"}
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-version = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/version" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { path = "../../primitives/io", default-features = false, version = "2.0.0-alpha.6"}
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-version = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/version" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
impl-trait-for-tuples = "0.1.3"
|
||||
|
||||
[dev-dependencies]
|
||||
criterion = "0.2.11"
|
||||
sp-externalities = { version = "0.8.0-alpha.5", path = "../../primitives/externalities" }
|
||||
sp-externalities = { version = "0.8.0-alpha.6", path = "../../primitives/externalities" }
|
||||
substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../test-utils/runtime/client" }
|
||||
|
||||
[features]
|
||||
@@ -41,6 +44,3 @@ runtime-benchmarks = ["sp-runtime/runtime-benchmarks"]
|
||||
[[bench]]
|
||||
name = "bench"
|
||||
harness = false
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "frame-system-rpc-runtime-api"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,8 +8,11 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "Runtime API definition required by System RPC extensions."
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
sp-api = { version = "2.0.0-alpha.5", default-features = false, path = "../../../../primitives/api" }
|
||||
sp-api = { version = "2.0.0-alpha.6", default-features = false, path = "../../../../primitives/api" }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
|
||||
|
||||
[features]
|
||||
@@ -18,6 +21,3 @@ std = [
|
||||
"sp-api/std",
|
||||
"codec/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-timestamp"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -9,23 +9,26 @@ repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME Timestamp Module"
|
||||
documentation = "https://docs.rs/pallet-timestamp"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io", optional = true }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-inherents = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/inherents" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-timestamp = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/timestamp" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io", optional = true }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/inherents" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
sp-timestamp = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/timestamp" }
|
||||
impl-trait-for-tuples = "0.1.3"
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io ={ version = "2.0.0-alpha.5", path = "../../primitives/io" }
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
sp-io ={ version = "2.0.0-alpha.6", path = "../../primitives/io" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -41,6 +44,3 @@ std = [
|
||||
"sp-timestamp/std"
|
||||
]
|
||||
runtime-benchmarks = ["frame-benchmarking", "sp-io"]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-transaction-payment"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,18 +8,21 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet to manage transaction payments"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-alpha.5", default-features = false, path = "./rpc/runtime-api" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-alpha.6", default-features = false, path = "./rpc/runtime-api" }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io = { version = "2.0.0-alpha.5", path = "../../primitives/io" }
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
sp-io = { version = "2.0.0-alpha.6", path = "../../primitives/io" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -31,6 +34,3 @@ std = [
|
||||
"frame-system/std",
|
||||
"pallet-transaction-payment-rpc-runtime-api/std"
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-transaction-payment-rpc"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,18 +8,18 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "RPC interface for the transaction payment module."
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0" }
|
||||
jsonrpc-core = "14.0.3"
|
||||
jsonrpc-core-client = "14.0.5"
|
||||
jsonrpc-derive = "14.0.3"
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../../primitives/core" }
|
||||
sp-rpc = { version = "2.0.0-alpha.5", path = "../../../primitives/rpc" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../../primitives/core" }
|
||||
sp-rpc = { version = "2.0.0-alpha.6", path = "../../../primitives/rpc" }
|
||||
serde = { version = "1.0.101", features = ["derive"] }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", path = "../../../primitives/runtime" }
|
||||
sp-api = { version = "2.0.0-alpha.5", path = "../../../primitives/api" }
|
||||
sp-blockchain = { version = "2.0.0-alpha.5", path = "../../../primitives/blockchain" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-alpha.5", path = "./runtime-api" }
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
sp-runtime = { version = "2.0.0-alpha.6", path = "../../../primitives/runtime" }
|
||||
sp-api = { version = "2.0.0-alpha.6", path = "../../../primitives/api" }
|
||||
sp-blockchain = { version = "2.0.0-alpha.6", path = "../../../primitives/blockchain" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-alpha.6", path = "./runtime-api" }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-transaction-payment-rpc-runtime-api"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,13 +8,16 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "RPC runtime API for transaction payment FRAME pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||
sp-api = { version = "2.0.0-alpha.5", default-features = false, path = "../../../../primitives/api" }
|
||||
sp-api = { version = "2.0.0-alpha.6", default-features = false, path = "../../../../primitives/api" }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../../../support" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../../../support" }
|
||||
|
||||
[dev-dependencies]
|
||||
serde_json = "1.0.41"
|
||||
@@ -29,6 +32,3 @@ std = [
|
||||
"sp-runtime/std",
|
||||
"frame-support/std",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-treasury"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,20 +8,23 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet to manage treasury"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", default-features = false, path = "../balances" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", default-features = false, path = "../balances" }
|
||||
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-io ={ version = "2.0.0-alpha.5", path = "../../primitives/io" }
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
sp-io ={ version = "2.0.0-alpha.6", path = "../../primitives/io" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -38,6 +41,3 @@ runtime-benchmarks = [
|
||||
"frame-benchmarking",
|
||||
"frame-support/runtime-benchmarks",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-utility"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,21 +8,24 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME utilities pallet"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
sp-core = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
sp-core = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/core" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../benchmarking", optional = true }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
@@ -39,6 +42,3 @@ runtime-benchmarks = [
|
||||
"frame-benchmarking",
|
||||
"frame-support/runtime-benchmarks",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "pallet-vesting"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
@@ -8,21 +8,24 @@ homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
description = "FRAME pallet for manage vesting"
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
serde = { version = "1.0.101", optional = true }
|
||||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] }
|
||||
enumflags2 = { version = "0.6.2" }
|
||||
sp-std = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.5", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../system" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../benchmarking", optional = true }
|
||||
sp-std = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/std" }
|
||||
sp-io = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime = { version = "2.0.0-alpha.6", default-features = false, path = "../../primitives/runtime" }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../system" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../benchmarking", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
sp-core = { version = "2.0.0-alpha.5", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", path = "../balances" }
|
||||
sp-storage = { version = "2.0.0-alpha.5", path = "../../primitives/storage" }
|
||||
sp-core = { version = "2.0.0-alpha.6", path = "../../primitives/core" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", path = "../balances" }
|
||||
sp-storage = { version = "2.0.0-alpha.6", path = "../../primitives/storage" }
|
||||
hex-literal = "0.2.1"
|
||||
|
||||
[features]
|
||||
@@ -37,6 +40,3 @@ std = [
|
||||
"frame-system/std",
|
||||
]
|
||||
runtime-benchmarks = ["frame-benchmarking"]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
Reference in New Issue
Block a user