mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 07:01:03 +00:00
de4ab321f4
* Initial commit Forked at:4a3ffe07e7Parent branch: master * Update substrate: more CLI improvement * Update substrate and polkadot to cecton-cumulus-branch * WIP Forked at:4a3ffe07e7Parent branch: master * Update Cargo.lock * WIP Forked at:4a3ffe07e7Parent branch: master * WIP Forked at:4a3ffe07e7Parent branch: master * Update Cargo.lock * WIP Forked at:4a3ffe07e7Parent branch: master * WIP Forked at:4a3ffe07e7Parent branch: master * Test running node and interrupts * WIP Forked at:4a3ffe07e7Parent branch: master * Update Cargo.lock * Update test/parachain/tests/running_the_node_and_interrupt.rs Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
67 lines
3.6 KiB
TOML
67 lines
3.6 KiB
TOML
[package]
|
|
name = 'cumulus-test-parachain-runtime'
|
|
version = '0.1.0'
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = '2018'
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false, features = ["derive"] }
|
|
|
|
# Substrate dependencies
|
|
sp-std = { git = "https://github.com/paritytech/substrate", default_features = false, branch = "cecton-cumulus-branch" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", default_features = false, branch = "cecton-cumulus-branch" }
|
|
sp-io = { git = "https://github.com/paritytech/substrate", default_features = false, branch = "cecton-cumulus-branch" }
|
|
sp-version = { git = "https://github.com/paritytech/substrate", default_features = false, branch = "cecton-cumulus-branch" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", default_features = false, branch = "cecton-cumulus-branch" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", default_features = false, branch = "cecton-cumulus-branch" }
|
|
sp-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cecton-cumulus-branch" }
|
|
sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cecton-cumulus-branch" }
|
|
sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cecton-cumulus-branch" }
|
|
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cecton-cumulus-branch" }
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cecton-cumulus-branch" }
|
|
|
|
frame-support = { git = "https://github.com/paritytech/substrate", default_features = false, branch = "cecton-cumulus-branch" }
|
|
frame-executive = { git = "https://github.com/paritytech/substrate", default_features = false, branch = "cecton-cumulus-branch" }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", default_features = false, branch = "cecton-cumulus-branch" }
|
|
pallet-balances = { git = "https://github.com/paritytech/substrate", default_features = false, branch = "cecton-cumulus-branch" }
|
|
pallet-indices = { git = "https://github.com/paritytech/substrate", default_features = false, branch = "cecton-cumulus-branch" }
|
|
pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default_features = false, branch = "cecton-cumulus-branch" }
|
|
pallet-timestamp = { git = "https://github.com/paritytech/substrate", default_features = false, branch = "cecton-cumulus-branch" }
|
|
pallet-sudo = { git = "https://github.com/paritytech/substrate", default_features = false, branch = "cecton-cumulus-branch" }
|
|
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "cecton-cumulus-branch" }
|
|
|
|
# Cumulus dependencies
|
|
cumulus-runtime = { path = "../../../runtime", default-features = false }
|
|
|
|
[build-dependencies]
|
|
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.3" }
|
|
|
|
[features]
|
|
default = ['std']
|
|
std = [
|
|
'codec/std',
|
|
'serde',
|
|
'sp-api/std',
|
|
'sp-std/std',
|
|
'sp-io/std',
|
|
'sp-core/std',
|
|
'sp-runtime/std',
|
|
'sp-version/std',
|
|
'sp-offchain/std',
|
|
'sp-session/std',
|
|
'sp-block-builder/std',
|
|
'sp-transaction-pool/std',
|
|
'sp-inherents/std',
|
|
'frame-support/std',
|
|
'frame-executive/std',
|
|
'frame-system/std',
|
|
'pallet-balances/std',
|
|
'pallet-indices/std',
|
|
'pallet-randomness-collective-flip/std',
|
|
'pallet-timestamp/std',
|
|
'pallet-sudo/std',
|
|
'pallet-transaction-payment/std',
|
|
'cumulus-runtime/std',
|
|
]
|