mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 10:31:03 +00:00
28 lines
791 B
TOML
28 lines
791 B
TOML
[package]
|
|
name = "bp-asset-hub-kusama"
|
|
description = "Primitives of AssetHubKusama parachain runtime."
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false }
|
|
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
|
|
|
|
# Substrate Dependencies
|
|
frame-support = { path = "../../../substrate/frame/support", default-features = false }
|
|
|
|
# Bridge Dependencies
|
|
bp-xcm-bridge-hub-router = { path = "../xcm-bridge-hub-router", default-features = false }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"bp-xcm-bridge-hub-router/std",
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"scale-info/std",
|
|
]
|