mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 21:01:02 +00:00
dcda0e50f5
* Fix build profiles Closes https://github.com/paritytech/polkadot-sdk/issues/1155 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Manually set version to 1.0.0 Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * Use workspace repo Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> * 'Authors and Edition from workspace Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[package]
|
|
name = "bp-relayers"
|
|
description = "Primitives of relayers module."
|
|
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"] }
|
|
|
|
# Bridge Dependencies
|
|
|
|
bp-messages = { path = "../messages", default-features = false }
|
|
bp-runtime = { path = "../runtime", default-features = false }
|
|
|
|
# Substrate Dependencies
|
|
|
|
frame-support = { path = "../../../../substrate/frame/support", 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"
|
|
hex-literal = "0.4"
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
std = [
|
|
"bp-messages/std",
|
|
"bp-runtime/std",
|
|
"frame-support/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
]
|