mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 21:01:05 +00:00
Release primitive crates (#10937)
* cargo set-version --bump major -p pallet-contracts-primitives * cargo set-version --bump major -p sp-core * cargo set-version --bump major -p sp-runtime-interface * cargo set-version --bump major -p sp-wasm-interface * cargo set-version --bump major -p sp-runtime * cargo set-version --bump major -p sp-storage * cargo set-version --bump major -p sp-rpc * cargo set-version --bump major -p sp-io * cargo set-version --bump major -p sp-trie * cargo set-version -p sp-state-machine -- 0.12.0 * cargo set-version -p sp-externalities -- 0.12.0 * cargo set-version -p sp-keystore -- 0.12.0 * cargo set-version --bump major -p sp-keyring * cargo set-version --bump major -p sp-version * cargo set-version --bump major -p sp-tracing * cargo set-version --bump major -p sp-application-crypto * cargo set-version --bump major -p sp-arithmetic * cargo unleash version bump-major -p sp-runtime-interface-proc-macro * Add codec max-encoded-len feature to sp-arithmetic * cargo unleash version bump-major -p sp-core-hashing-proc-macro
This commit is contained in:
@@ -13,37 +13,37 @@ publish = false
|
||||
targets = ["x86_64-unknown-linux-gnu"]
|
||||
|
||||
[dependencies]
|
||||
sp-application-crypto = { version = "5.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-application-crypto = { version = "6.0.0", default-features = false, path = "../../primitives/application-crypto" }
|
||||
sp-consensus-aura = { version = "0.10.0-dev", default-features = false, path = "../../primitives/consensus/aura" }
|
||||
sp-consensus-babe = { version = "0.10.0-dev", default-features = false, path = "../../primitives/consensus/babe" }
|
||||
sp-block-builder = { version = "4.0.0-dev", default-features = false, path = "../../primitives/block-builder" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
||||
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
sp-inherents = { version = "4.0.0-dev", default-features = false, path = "../../primitives/inherents" }
|
||||
sp-keyring = { version = "5.0.0", optional = true, path = "../../primitives/keyring" }
|
||||
sp-keyring = { version = "6.0.0", optional = true, path = "../../primitives/keyring" }
|
||||
memory-db = { version = "0.29.0", default-features = false }
|
||||
sp-offchain = { version = "4.0.0-dev", default-features = false, path = "../../primitives/offchain" }
|
||||
sp-core = { version = "5.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", default-features = false, path = "../../primitives/core" }
|
||||
sp-std = { version = "4.0.0", default-features = false, path = "../../primitives/std" }
|
||||
sp-runtime-interface = { version = "5.0.0", default-features = false, path = "../../primitives/runtime-interface" }
|
||||
sp-io = { version = "5.0.0", default-features = false, path = "../../primitives/io" }
|
||||
sp-runtime-interface = { version = "6.0.0", default-features = false, path = "../../primitives/runtime-interface" }
|
||||
sp-io = { version = "6.0.0", default-features = false, path = "../../primitives/io" }
|
||||
frame-support = { version = "4.0.0-dev", default-features = false, path = "../../frame/support" }
|
||||
sp-version = { version = "4.0.0-dev", default-features = false, path = "../../primitives/version" }
|
||||
sp-version = { version = "5.0.0", default-features = false, path = "../../primitives/version" }
|
||||
sp-session = { version = "4.0.0-dev", default-features = false, path = "../../primitives/session" }
|
||||
sp-api = { version = "4.0.0-dev", default-features = false, path = "../../primitives/api" }
|
||||
sp-runtime = { version = "5.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", default-features = false, path = "../../primitives/runtime" }
|
||||
pallet-babe = { version = "4.0.0-dev", default-features = false, path = "../../frame/babe" }
|
||||
frame-system = { version = "4.0.0-dev", default-features = false, path = "../../frame/system" }
|
||||
frame-system-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, path = "../../frame/system/rpc/runtime-api" }
|
||||
pallet-timestamp = { version = "4.0.0-dev", default-features = false, path = "../../frame/timestamp" }
|
||||
sp-finality-grandpa = { version = "4.0.0-dev", default-features = false, path = "../../primitives/finality-grandpa" }
|
||||
sp-trie = { version = "5.0.0", default-features = false, path = "../../primitives/trie" }
|
||||
sp-trie = { version = "6.0.0", default-features = false, path = "../../primitives/trie" }
|
||||
sp-transaction-pool = { version = "4.0.0-dev", default-features = false, path = "../../primitives/transaction-pool" }
|
||||
trie-db = { version = "0.23.1", default-features = false }
|
||||
parity-util-mem = { version = "0.11.0", default-features = false, features = ["primitive-types"] }
|
||||
sc-service = { version = "0.10.0-dev", default-features = false, optional = true, features = ["test-helpers"], path = "../../client/service" }
|
||||
sp-state-machine = { version = "0.11.0", default-features = false, path = "../../primitives/state-machine" }
|
||||
sp-externalities = { version = "0.11.0", default-features = false, path = "../../primitives/externalities" }
|
||||
sp-state-machine = { version = "0.12.0", default-features = false, path = "../../primitives/state-machine" }
|
||||
sp-externalities = { version = "0.12.0", default-features = false, path = "../../primitives/externalities" }
|
||||
|
||||
# 3rd party
|
||||
cfg-if = "1.0"
|
||||
|
||||
@@ -16,9 +16,9 @@ sp-consensus = { version = "0.10.0-dev", path = "../../../primitives/consensus/c
|
||||
sc-consensus = { version = "0.10.0-dev", path = "../../../client/consensus/common" }
|
||||
sc-block-builder = { version = "0.10.0-dev", path = "../../../client/block-builder" }
|
||||
substrate-test-client = { version = "2.0.0", path = "../../client" }
|
||||
sp-core = { version = "5.0.0", path = "../../../primitives/core" }
|
||||
sp-core = { version = "6.0.0", path = "../../../primitives/core" }
|
||||
substrate-test-runtime = { version = "2.0.0", path = "../../runtime" }
|
||||
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
|
||||
sp-api = { version = "4.0.0-dev", path = "../../../primitives/api" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
|
||||
@@ -16,7 +16,7 @@ substrate-test-runtime-client = { version = "2.0.0", path = "../client" }
|
||||
parking_lot = "0.12.0"
|
||||
codec = { package = "parity-scale-codec", version = "3.0.0" }
|
||||
sp-blockchain = { version = "4.0.0-dev", path = "../../../primitives/blockchain" }
|
||||
sp-runtime = { version = "5.0.0", path = "../../../primitives/runtime" }
|
||||
sp-runtime = { version = "6.0.0", path = "../../../primitives/runtime" }
|
||||
sc-transaction-pool = { version = "4.0.0-dev", path = "../../../client/transaction-pool" }
|
||||
sc-transaction-pool-api = { version = "4.0.0-dev", path = "../../../client/transaction-pool/api" }
|
||||
futures = "0.3.19"
|
||||
|
||||
Reference in New Issue
Block a user