mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-13 16:15:49 +00:00
b839c995c0
Updating the bridges subtree hopefully just one last time in this formula in order to make the final migration less verbose.
49 lines
1.5 KiB
TOML
49 lines
1.5 KiB
TOML
[package]
|
|
name = "bp-polkadot-core"
|
|
description = "Primitives of Polkadot-like runtime."
|
|
version = "0.7.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false, features = ["derive"] }
|
|
parity-util-mem = { version = "0.12.0", optional = true }
|
|
scale-info = { version = "2.11.0", default-features = false, features = ["derive"] }
|
|
serde = { optional = true, features = ["derive"], workspace = true, default-features = true }
|
|
|
|
# Bridge Dependencies
|
|
|
|
bp-messages = { path = "../messages", default-features = false }
|
|
bp-runtime = { path = "../runtime", default-features = false }
|
|
|
|
# Substrate Based Dependencies
|
|
|
|
frame-support = { path = "../../../substrate/frame/support", default-features = false }
|
|
frame-system = { path = "../../../substrate/frame/system", default-features = false }
|
|
sp-core = { path = "../../../substrate/primitives/core", default-features = false }
|
|
sp-runtime = { path = "../../../substrate/primitives/runtime", default-features = false }
|
|
sp-std = { path = "../../../substrate/primitives/std", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
hex = "0.4"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bp-messages/std",
|
|
"bp-runtime/std",
|
|
"codec/std",
|
|
"frame-support/std",
|
|
"frame-system/std",
|
|
"parity-util-mem",
|
|
"scale-info/std",
|
|
"serde",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
]
|