mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 07:01:03 +00:00
17b2e1b300
* Nits (merge before separatelly) * Small cosmetics for Rococo/Wococo bridge local run * Squashed 'bridges/' changes from 04b3dda6aa..5fc377ab34 5fc377ab34 Support for kusama-polkadot relaying (#2128) 01f4b7f1ba Fix clippy warnings (#2127) 696ff1c368 BHK/P alignments (#2115) 2a66aa3248 Small fixes (#2126) 7810f1a988 Cosmetics (#2124) daf250f69c Remove some `expect()` statements (#2123) 1c5fba8274 temporarily remove balance guard (#2121) 3d0e547361 Propagate message receival confirmation errors (#2116) 1c33143f07 Propagate message verification errors (#2114) b075b00910 Bump time from 0.3.20 to 0.3.21 51a3a51618 Bump serde from 1.0.160 to 1.0.162 da88d044a6 Bump clap from 4.2.5 to 4.2.7 cdca322cd6 Bump sysinfo from 0.28.4 to 0.29.0 git-subtree-dir: bridges git-subtree-split: 5fc377ab34f7dfd3293099c5feec49255e827812 * Fix * Allow to change storage constants (DeliveryReward, RequiredStakeForStakeAndSlash) + tests * Clippy * New SA for RO/WO * Squashed 'bridges/' changes from 5fc377ab34..0f6091d481 0f6091d481 Bump polkadot/substrate (#2134) 9233f0a337 Bump tokio from 1.28.0 to 1.28.1 a29c1caa93 Bump serde from 1.0.162 to 1.0.163 git-subtree-dir: bridges git-subtree-split: 0f6091d48184ebb4f75cb3089befa6b92cf37335
89 lines
3.8 KiB
TOML
89 lines
3.8 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.1.5", default-features = false, features = ["derive"] }
|
|
hash-db = { version = "0.16.0", default-features = false }
|
|
log = { version = "0.4.17", default-features = false }
|
|
scale-info = { version = "2.6.0", default-features = false, features = ["derive"] }
|
|
static_assertions = { version = "1.1", optional = true }
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-header-chain = { path = "../../primitives/header-chain", default-features = false }
|
|
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-relayers = { path = "../../primitives/relayers", 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 }
|
|
pallet-bridge-relayers = { path = "../../modules/relayers", 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-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
|
|
pallet-utility = { 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-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 }
|
|
|
|
# Polkadot dependencies
|
|
xcm = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false }
|
|
xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "master", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
bp-test-utils = { path = "../../primitives/test-utils" }
|
|
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bp-header-chain/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",
|
|
"pallet-bridge-grandpa/std",
|
|
"pallet-bridge-messages/std",
|
|
"pallet-bridge-parachains/std",
|
|
"pallet-bridge-relayers/std",
|
|
"pallet-transaction-payment/std",
|
|
"pallet-utility/std",
|
|
"scale-info/std",
|
|
"sp-api/std",
|
|
"sp-core/std",
|
|
"sp-io/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"sp-trie/std",
|
|
"xcm/std",
|
|
"xcm-builder/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pallet-bridge-grandpa/runtime-benchmarks",
|
|
"pallet-bridge-messages/runtime-benchmarks",
|
|
"pallet-bridge-parachains/runtime-benchmarks",
|
|
"pallet-bridge-relayers/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
]
|
|
integrity-test = [
|
|
"static_assertions",
|
|
]
|