mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 08:11:03 +00:00
caa8b8172b
* add AssetId type alias in statemint-common * add FungiblesAdapter to allow for asset transactions via XCM * use custom Polkadot * fix FungiblesAdapter usage and add CheckingAccount * update deps * remove polkadot overrides * update deps * pull NonZeroIssuance struct into common + add FungiblesTransactor to Statemine and Westmint * remove unnecessary tuple wrapping + adjust asset transactor comments * accept statemint as reserve in rococo test parachain * adjust parachain config (add Statemint as reserve) * add test and docs for AssetsFrom * cargo fmt Co-authored-by: Ricardo Rius <ricardo@parity.io> Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
108 lines
5.8 KiB
TOML
108 lines
5.8 KiB
TOML
[package]
|
|
name = 'rococo-runtime'
|
|
version = '0.1.0'
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = '2018'
|
|
description = "Simple runtime used by the rococo parachain(s)"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "2.3.0", default-features = false, features = ["derive"] }
|
|
log = { version = "0.4.14", default-features = false }
|
|
parachain-info = { path = "../pallets/parachain-info", default-features = false }
|
|
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
|
|
# Substrate dependencies
|
|
sp-std = { 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-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
sp-version = { 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-core = { 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-offchain = { 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-transaction-pool = { 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-consensus-aura = { 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-executive = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
pallet-assets = { 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-timestamp = { 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-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
pallet-aura = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "master" }
|
|
|
|
parachains-common = { path = "../parachains-common", default-features = false }
|
|
|
|
# Cumulus dependencies
|
|
cumulus-pallet-aura-ext = { path = "../../pallets/aura-ext", default-features = false }
|
|
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 }
|
|
cumulus-primitives-utility = { path = "../../primitives/utility", default-features = false }
|
|
cumulus-pallet-dmp-queue = { path = "../../pallets/dmp-queue", default-features = false }
|
|
cumulus-pallet-xcmp-queue = { path = "../../pallets/xcmp-queue", default-features = false }
|
|
cumulus-pallet-xcm = { path = "../../pallets/xcm", default-features = false }
|
|
cumulus-ping = { path = "../pallets/ping", default-features = false }
|
|
|
|
# Polkadot dependencies
|
|
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
|
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
|
xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
|
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
|
pallet-xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"serde",
|
|
"log/std",
|
|
"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-assets/std",
|
|
"pallet-balances/std",
|
|
"pallet-randomness-collective-flip/std",
|
|
"pallet-timestamp/std",
|
|
"pallet-sudo/std",
|
|
"pallet-transaction-payment/std",
|
|
"parachain-info/std",
|
|
"cumulus-pallet-aura-ext/std",
|
|
"cumulus-pallet-dmp-queue/std",
|
|
"cumulus-pallet-parachain-system/std",
|
|
"cumulus-pallet-xcmp-queue/std",
|
|
"cumulus-pallet-xcm/std",
|
|
"cumulus-primitives-core/std",
|
|
"cumulus-primitives-timestamp/std",
|
|
"cumulus-primitives-utility/std",
|
|
"cumulus-ping/std",
|
|
"xcm/std",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"pallet-aura/std",
|
|
"sp-consensus-aura/std",
|
|
]
|