mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 00:37:57 +00:00
c131a5e3c8
* send messages using xcm pallet * XcmBridge && XcmBridgeAdapter + (untested) config in RialtoParachain * impl encode_send_xcm for the rest * remove duplicate code * some fixes * cleanup * some more tests * cleanup * cleanup * send Rialto -> Millau messages using bridge-messages pallet * fmt * some clippy fixes * more clippy
93 lines
4.0 KiB
TOML
93 lines
4.0 KiB
TOML
[package]
|
|
name = "bridge-runtime-common"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
repository = "https://github.com/paritytech/parity-bridges-common/"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
|
|
hash-db = { version = "0.15.2", default-features = false }
|
|
log = { version = "0.4.14", default-features = false }
|
|
num-traits = { version = "0.2", default-features = false }
|
|
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
|
|
static_assertions = { version = "1.1", optional = true }
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-messages = { path = "../../primitives/messages", default-features = false }
|
|
bp-parachains = { path = "../../primitives/parachains", default-features = false }
|
|
bp-polkadot-core = { path = "../../primitives/polkadot-core", default-features = false }
|
|
bp-runtime = { path = "../../primitives/runtime", default-features = false }
|
|
pallet-bridge-grandpa = { path = "../../modules/grandpa", default-features = false }
|
|
pallet-bridge-messages = { path = "../../modules/messages", default-features = false }
|
|
pallet-bridge-parachains = { path = "../../modules/parachains", default-features = false }
|
|
|
|
# Substrate dependencies
|
|
|
|
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, optional = true }
|
|
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-io = { 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-state-machine = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
|
|
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
sp-version = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, optional = true }
|
|
|
|
# Polkadot dependencies
|
|
|
|
pallet-xcm = { git = "https://github.com/paritytech/polkadot", branch = "gav-xcm-v3", default-features = false }
|
|
xcm = { git = "https://github.com/paritytech/polkadot", branch = "gav-xcm-v3", default-features = false }
|
|
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "gav-xcm-v3", default-features = false }
|
|
xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "gav-xcm-v3", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
millau-runtime = { path = "../millau/runtime" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bp-messages/std",
|
|
"bp-parachains/std",
|
|
"bp-polkadot-core/std",
|
|
"bp-runtime/std",
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"hash-db/std",
|
|
"log/std",
|
|
"num-traits/std",
|
|
"pallet-bridge-grandpa/std",
|
|
"pallet-bridge-messages/std",
|
|
"pallet-bridge-parachains/std",
|
|
"pallet-transaction-payment/std",
|
|
"pallet-xcm/std",
|
|
"scale-info/std",
|
|
"sp-api/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-state-machine/std",
|
|
"sp-std/std",
|
|
"sp-trie/std",
|
|
"xcm/std",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pallet-balances",
|
|
"pallet-bridge-grandpa/runtime-benchmarks",
|
|
"pallet-bridge-messages/runtime-benchmarks",
|
|
"sp-state-machine",
|
|
"sp-version",
|
|
"xcm-builder/runtime-benchmarks",
|
|
]
|
|
integrity-test = [
|
|
"static_assertions",
|
|
]
|