mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 22:41:02 +00:00
2c26640ac3
* Use polkadot-sdk dependencies * Fix ring-proof ref * Fix Beefy * Fix imports * Simple runtimes fixes * Fix substrate-relay * Add ParaAssignmentProvider for Rialto * Rialto chain_spec fix * Fix Rialto build * Fix Rialto pvf workers * Allow rialto-parachain deprecated features warnings
20 lines
818 B
TOML
20 lines
818 B
TOML
[package]
|
|
name = "bp-xcm-bridge-hub-router"
|
|
description = "Primitives of the xcm-bridge-hub fee pallet."
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
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", "bit-vec"] }
|
|
scale-info = { version = "2.9.0", default-features = false, features = ["bit-vec", "derive"] }
|
|
|
|
# Substrate Dependencies
|
|
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false }
|
|
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master", default-features = false }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [ "codec/std", "scale-info/std", "sp-core/std", "sp-runtime/std" ]
|