mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 05:51:02 +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>
61 lines
2.9 KiB
TOML
61 lines
2.9 KiB
TOML
[package]
|
|
name = "parachains-common"
|
|
version = "1.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
description = "Logic which is common to all parachain runtimes"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ['x86_64-unknown-linux-gnu']
|
|
|
|
[dependencies]
|
|
# External dependencies
|
|
codec = { package = 'parity-scale-codec', version = '2.3.0', features = ['derive'], default-features = false }
|
|
scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }
|
|
|
|
# Substrate dependencies
|
|
sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
|
sp-std = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
|
sp-io = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
|
frame-executive = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
|
frame-support = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
|
frame-system = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
|
pallet-balances = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
|
sp-runtime = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
|
sp-core = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
|
node-primitives = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
|
|
|
# Polkadot dependencies
|
|
polkadot-runtime-common = { git = 'https://github.com/paritytech/polkadot', branch = "master", default-features = false }
|
|
polkadot-primitives = { git = 'https://github.com/paritytech/polkadot', branch = "master", default-features = false }
|
|
xcm = { git = 'https://github.com/paritytech/polkadot', branch = "master", default-features = false }
|
|
xcm-executor = { git = 'https://github.com/paritytech/polkadot', branch = "master", default-features = false }
|
|
|
|
# Local dependencies
|
|
pallet-collator-selection = { path = '../../pallets/collator-selection', default-features = false }
|
|
|
|
[dev-dependencies]
|
|
sp-io = { git = 'https://github.com/paritytech/substrate', branch = "master", default-features = false }
|
|
pallet-authorship = { git = 'https://github.com/paritytech/substrate', branch = "master", 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',
|
|
'sp-consensus-aura/std',
|
|
'sp-std/std',
|
|
'sp-io/std',
|
|
'frame-support/std',
|
|
'frame-executive/std',
|
|
'frame-system/std',
|
|
'pallet-collator-selection/std',
|
|
'pallet-balances/std',
|
|
'node-primitives/std',
|
|
'polkadot-runtime-common/std',
|
|
'polkadot-primitives/std',
|
|
]
|