mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 04:07:57 +00:00
Releasing 3.0 (#8098)
* bumping version for next release * add changelog * add guide
This commit is contained in:
committed by
GitHub
parent
772224c132
commit
6a964c5df0
@@ -13,42 +13,42 @@ targets = ["x86_64-unknown-linux-gnu"]
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
|
||||
|
||||
pallet-aura = { version = "2.0.0", default-features = false, path = "../../../frame/aura" }
|
||||
pallet-balances = { version = "2.0.0", default-features = false, path = "../../../frame/balances" }
|
||||
frame-support = { version = "2.0.0", default-features = false, path = "../../../frame/support" }
|
||||
pallet-grandpa = { version = "2.0.0", default-features = false, path = "../../../frame/grandpa" }
|
||||
pallet-randomness-collective-flip = { version = "2.0.0", default-features = false, path = "../../../frame/randomness-collective-flip" }
|
||||
pallet-sudo = { version = "2.0.0", default-features = false, path = "../../../frame/sudo" }
|
||||
frame-system = { version = "2.0.0", default-features = false, path = "../../../frame/system" }
|
||||
pallet-timestamp = { version = "2.0.0", default-features = false, path = "../../../frame/timestamp" }
|
||||
pallet-transaction-payment = { version = "2.0.0", default-features = false, path = "../../../frame/transaction-payment" }
|
||||
frame-executive = { version = "2.0.0", default-features = false, path = "../../../frame/executive" }
|
||||
pallet-aura = { version = "3.0.0", default-features = false, path = "../../../frame/aura" }
|
||||
pallet-balances = { version = "3.0.0", default-features = false, path = "../../../frame/balances" }
|
||||
frame-support = { version = "3.0.0", default-features = false, path = "../../../frame/support" }
|
||||
pallet-grandpa = { version = "3.0.0", default-features = false, path = "../../../frame/grandpa" }
|
||||
pallet-randomness-collective-flip = { version = "3.0.0", default-features = false, path = "../../../frame/randomness-collective-flip" }
|
||||
pallet-sudo = { version = "3.0.0", default-features = false, path = "../../../frame/sudo" }
|
||||
frame-system = { version = "3.0.0", default-features = false, path = "../../../frame/system" }
|
||||
pallet-timestamp = { version = "3.0.0", default-features = false, path = "../../../frame/timestamp" }
|
||||
pallet-transaction-payment = { version = "3.0.0", default-features = false, path = "../../../frame/transaction-payment" }
|
||||
frame-executive = { version = "3.0.0", default-features = false, path = "../../../frame/executive" }
|
||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||
sp-api = { version = "2.0.0", default-features = false, path = "../../../primitives/api" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "2.0.0"}
|
||||
sp-consensus-aura = { version = "0.8.0", default-features = false, path = "../../../primitives/consensus/aura" }
|
||||
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "2.0.0"}
|
||||
sp-offchain = { version = "2.0.0", default-features = false, path = "../../../primitives/offchain" }
|
||||
sp-runtime = { version = "2.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-session = { version = "2.0.0", default-features = false, path = "../../../primitives/session" }
|
||||
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
sp-transaction-pool = { version = "2.0.0", default-features = false, path = "../../../primitives/transaction-pool" }
|
||||
sp-version = { version = "2.0.0", default-features = false, path = "../../../primitives/version" }
|
||||
sp-api = { version = "3.0.0", default-features = false, path = "../../../primitives/api" }
|
||||
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false, version = "3.0.0"}
|
||||
sp-consensus-aura = { version = "0.9.0", default-features = false, path = "../../../primitives/consensus/aura" }
|
||||
sp-core = { version = "3.0.0", default-features = false, path = "../../../primitives/core" }
|
||||
sp-inherents = { path = "../../../primitives/inherents", default-features = false, version = "3.0.0"}
|
||||
sp-offchain = { version = "3.0.0", default-features = false, path = "../../../primitives/offchain" }
|
||||
sp-runtime = { version = "3.0.0", default-features = false, path = "../../../primitives/runtime" }
|
||||
sp-session = { version = "3.0.0", default-features = false, path = "../../../primitives/session" }
|
||||
sp-std = { version = "3.0.0", default-features = false, path = "../../../primitives/std" }
|
||||
sp-transaction-pool = { version = "3.0.0", default-features = false, path = "../../../primitives/transaction-pool" }
|
||||
sp-version = { version = "3.0.0", default-features = false, path = "../../../primitives/version" }
|
||||
|
||||
# Used for the node template's RPCs
|
||||
frame-system-rpc-runtime-api = { version = "2.0.0", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "2.0.0", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
|
||||
frame-system-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/system/rpc/runtime-api/" }
|
||||
pallet-transaction-payment-rpc-runtime-api = { version = "3.0.0", default-features = false, path = "../../../frame/transaction-payment/rpc/runtime-api/" }
|
||||
|
||||
# Used for runtime benchmarking
|
||||
frame-benchmarking = { version = "2.0.0", default-features = false, path = "../../../frame/benchmarking", optional = true }
|
||||
frame-system-benchmarking = { version = "2.0.0", default-features = false, path = "../../../frame/system/benchmarking", optional = true }
|
||||
frame-benchmarking = { version = "3.0.0", default-features = false, path = "../../../frame/benchmarking", optional = true }
|
||||
frame-system-benchmarking = { version = "3.0.0", default-features = false, path = "../../../frame/system/benchmarking", optional = true }
|
||||
hex-literal = { version = "0.3.1", optional = true }
|
||||
|
||||
template = { version = "2.0.0", default-features = false, path = "../pallets/template", package = "pallet-template" }
|
||||
|
||||
[build-dependencies]
|
||||
substrate-wasm-builder = { version = "3.0.0", path = "../../../utils/wasm-builder" }
|
||||
substrate-wasm-builder = { version = "4.0.0", path = "../../../utils/wasm-builder" }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
|
||||
Reference in New Issue
Block a user