mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-23 07:18:00 +00:00
1aab3349cc
* Use DecodeLimit for decoding XCM messages * Use decode_all_with_depth_limit in appropriate places * Use decode_all while decoding byte vector * cargo fmt
71 lines
3.6 KiB
TOML
71 lines
3.6 KiB
TOML
[package]
|
|
name = "cumulus-test-runtime"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive"] }
|
|
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
|
|
# Substrate dependencies
|
|
frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-version = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
|
|
# Cumulus dependencies
|
|
cumulus-pallet-parachain-system = { path = "../../pallets/parachain-system", default-features = false }
|
|
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
|
|
cumulus-primitives-timestamp = { path = "../../primitives/timestamp", default-features = false }
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"cumulus-pallet-parachain-system/std",
|
|
"cumulus-primitives-core/std",
|
|
"cumulus-primitives-timestamp/std",
|
|
"frame-executive/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"pallet-balances/std",
|
|
"pallet-randomness-collective-flip/std",
|
|
"pallet-sudo/std",
|
|
"pallet-timestamp/std",
|
|
"pallet-transaction-payment/std",
|
|
"serde",
|
|
"sp-api/std",
|
|
"sp-block-builder/std",
|
|
"sp-core/std",
|
|
"sp-inherents/std",
|
|
"sp-io/std",
|
|
"sp-offchain/std",
|
|
"sp-runtime/std",
|
|
"sp-session/std",
|
|
"sp-std/std",
|
|
"sp-transaction-pool/std",
|
|
"sp-version/std",
|
|
]
|
|
upgrade = []
|