mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +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 = "node-runtime"
|
||||
version = "2.0.0-alpha.5"
|
||||
version = "2.0.0-alpha.6"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
build = "build.rs"
|
||||
@@ -8,6 +8,9 @@ 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]
|
||||
|
||||
# third-party dependencies
|
||||
@@ -16,67 +19,67 @@ integer-sqrt = { version = "0.1.2" }
|
||||
serde = { version = "1.0.102", optional = true }
|
||||
|
||||
# primitives
|
||||
sp-authority-discovery = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/authority-discovery" }
|
||||
sp-consensus-babe = { version = "0.8.0-alpha.5", default-features = false, path = "../../../primitives/consensus/babe" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-alpha.5"}
|
||||
sp-inherents = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/inherents" }
|
||||
node-primitives = { version = "2.0.0-alpha.5", default-features = false, path = "../primitives" }
|
||||
sp-offchain = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/offchain" }
|
||||
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-api = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/api" }
|
||||
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" }
|
||||
sp-keyring = { version = "2.0.0-alpha.5", optional = true, path = "../../../primitives/keyring" }
|
||||
sp-session = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/session" }
|
||||
sp-transaction-pool = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/transaction-pool" }
|
||||
sp-version = { version = "2.0.0-alpha.5", default-features = false, path = "../../../primitives/version" }
|
||||
sp-authority-discovery = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/authority-discovery" }
|
||||
sp-consensus-babe = { version = "0.8.0-alpha.6", default-features = false, path = "../../../primitives/consensus/babe" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0-alpha.6"}
|
||||
sp-inherents = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/inherents" }
|
||||
node-primitives = { version = "2.0.0-alpha.6", default-features = false, path = "../primitives" }
|
||||
sp-offchain = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/offchain" }
|
||||
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-api = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/api" }
|
||||
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" }
|
||||
sp-keyring = { version = "2.0.0-alpha.6", optional = true, path = "../../../primitives/keyring" }
|
||||
sp-session = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/session" }
|
||||
sp-transaction-pool = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/transaction-pool" }
|
||||
sp-version = { version = "2.0.0-alpha.6", default-features = false, path = "../../../primitives/version" }
|
||||
|
||||
# frame dependencies
|
||||
frame-executive = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/executive" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/benchmarking", optional = true }
|
||||
frame-support = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/support" }
|
||||
frame-system = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/system" }
|
||||
frame-system-rpc-runtime-api = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
|
||||
pallet-authority-discovery = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/authority-discovery" }
|
||||
pallet-authorship = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/authorship" }
|
||||
pallet-babe = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/babe" }
|
||||
pallet-balances = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/balances" }
|
||||
pallet-collective = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/collective" }
|
||||
pallet-contracts = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/contracts" }
|
||||
pallet-contracts-primitives = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/contracts/common/" }
|
||||
pallet-contracts-rpc-runtime-api = { version = "0.8.0-alpha.5", default-features = false, path = "../../../frame/contracts/rpc/runtime-api/" }
|
||||
pallet-democracy = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/democracy" }
|
||||
pallet-elections-phragmen = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/elections-phragmen" }
|
||||
pallet-finality-tracker = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/finality-tracker" }
|
||||
pallet-grandpa = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/grandpa" }
|
||||
pallet-im-online = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/im-online" }
|
||||
pallet-indices = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/indices" }
|
||||
pallet-identity = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/identity" }
|
||||
pallet-membership = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/membership" }
|
||||
pallet-offences = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/offences" }
|
||||
pallet-offences-benchmarking = { version = "2.0.0-alpha.5", path = "../../../frame/offences/benchmarking", default-features = false, optional = true }
|
||||
pallet-randomness-collective-flip = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/randomness-collective-flip" }
|
||||
pallet-recovery = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/recovery" }
|
||||
pallet-session = { version = "2.0.0-alpha.5", features = ["historical"], path = "../../../frame/session", default-features = false }
|
||||
pallet-session-benchmarking = { version = "2.0.0-alpha.5", path = "../../../frame/session/benchmarking", default-features = false, optional = true }
|
||||
pallet-staking = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/staking" }
|
||||
pallet-staking-reward-curve = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/staking/reward-curve" }
|
||||
pallet-scheduler = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/scheduler" }
|
||||
pallet-society = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/society" }
|
||||
pallet-sudo = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/sudo" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/timestamp" }
|
||||
pallet-treasury = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/treasury" }
|
||||
pallet-utility = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/utility" }
|
||||
pallet-transaction-payment = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/transaction-payment" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
|
||||
pallet-vesting = { version = "2.0.0-alpha.5", default-features = false, path = "../../../frame/vesting" }
|
||||
frame-executive = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/executive" }
|
||||
frame-benchmarking = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/benchmarking", optional = true }
|
||||
frame-support = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/support" }
|
||||
frame-system = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/system" }
|
||||
frame-system-rpc-runtime-api = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
|
||||
pallet-authority-discovery = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/authority-discovery" }
|
||||
pallet-authorship = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/authorship" }
|
||||
pallet-babe = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/babe" }
|
||||
pallet-balances = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/balances" }
|
||||
pallet-collective = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/collective" }
|
||||
pallet-contracts = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/contracts" }
|
||||
pallet-contracts-primitives = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/contracts/common/" }
|
||||
pallet-contracts-rpc-runtime-api = { version = "0.8.0-alpha.6", default-features = false, path = "../../../frame/contracts/rpc/runtime-api/" }
|
||||
pallet-democracy = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/democracy" }
|
||||
pallet-elections-phragmen = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/elections-phragmen" }
|
||||
pallet-finality-tracker = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/finality-tracker" }
|
||||
pallet-grandpa = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/grandpa" }
|
||||
pallet-im-online = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/im-online" }
|
||||
pallet-indices = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/indices" }
|
||||
pallet-identity = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/identity" }
|
||||
pallet-membership = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/membership" }
|
||||
pallet-offences = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/offences" }
|
||||
pallet-offences-benchmarking = { version = "2.0.0-alpha.6", path = "../../../frame/offences/benchmarking", default-features = false, optional = true }
|
||||
pallet-randomness-collective-flip = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/randomness-collective-flip" }
|
||||
pallet-recovery = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/recovery" }
|
||||
pallet-session = { version = "2.0.0-alpha.6", features = ["historical"], path = "../../../frame/session", default-features = false }
|
||||
pallet-session-benchmarking = { version = "2.0.0-alpha.6", path = "../../../frame/session/benchmarking", default-features = false, optional = true }
|
||||
pallet-staking = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/staking" }
|
||||
pallet-staking-reward-curve = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/staking/reward-curve" }
|
||||
pallet-scheduler = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/scheduler" }
|
||||
pallet-society = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/society" }
|
||||
pallet-sudo = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/sudo" }
|
||||
pallet-timestamp = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/timestamp" }
|
||||
pallet-treasury = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/treasury" }
|
||||
pallet-utility = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/utility" }
|
||||
pallet-transaction-payment = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/transaction-payment" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
|
||||
pallet-vesting = { version = "2.0.0-alpha.6", default-features = false, path = "../../../frame/vesting" }
|
||||
|
||||
[build-dependencies]
|
||||
wasm-builder-runner = { version = "1.0.5", package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner" }
|
||||
|
||||
[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"]
|
||||
@@ -154,6 +157,3 @@ runtime-benchmarks = [
|
||||
"pallet-offences-benchmarking",
|
||||
"pallet-session-benchmarking",
|
||||
]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
Reference in New Issue
Block a user