mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 11:07:56 +00:00
3717ec3802
Related https://github.com/paritytech/polkadot-sdk/issues/3032 --- Using https://github.com/liamaharon/cargo-workspace-version-tools/ `cargo run -- sync --path ../polkadot-sdk` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
44 lines
1.6 KiB
TOML
44 lines
1.6 KiB
TOML
[package]
|
|
name = "bp-test-utils"
|
|
version = "0.7.0"
|
|
description = "Utilities for testing substrate-based runtime bridge code"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
bp-header-chain = { path = "../header-chain", default-features = false }
|
|
bp-parachains = { path = "../parachains", default-features = false }
|
|
bp-polkadot-core = { path = "../polkadot-core", default-features = false }
|
|
bp-runtime = { path = "../runtime", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "3.1.5", default-features = false }
|
|
ed25519-dalek = { version = "2.1", default-features = false }
|
|
finality-grandpa = { version = "0.16.2", default-features = false }
|
|
sp-application-crypto = { path = "../../../substrate/primitives/application-crypto", default-features = false }
|
|
sp-consensus-grandpa = { path = "../../../substrate/primitives/consensus/grandpa", 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 }
|
|
sp-trie = { path = "../../../substrate/primitives/trie", default-features = false }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"bp-header-chain/std",
|
|
"bp-parachains/std",
|
|
"bp-polkadot-core/std",
|
|
"bp-runtime/std",
|
|
"codec/std",
|
|
"ed25519-dalek/std",
|
|
"finality-grandpa/std",
|
|
"sp-application-crypto/std",
|
|
"sp-consensus-grandpa/std",
|
|
"sp-core/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
"sp-trie/std",
|
|
]
|