mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 04:37:57 +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>
46 lines
2.1 KiB
TOML
46 lines
2.1 KiB
TOML
[package]
|
|
name = "polkadot-node-core-approval-voting"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
futures = "0.3.21"
|
|
futures-timer = "3.0.2"
|
|
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["bit-vec", "derive"] }
|
|
gum = { package = "tracing-gum", path = "../../gum" }
|
|
bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] }
|
|
schnellru = "0.2.1"
|
|
merlin = "2.0"
|
|
schnorrkel = "0.9.1"
|
|
kvdb = "0.13.0"
|
|
derive_more = "0.99.17"
|
|
thiserror = "1.0.31"
|
|
|
|
polkadot-node-subsystem = { path = "../../subsystem" }
|
|
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
|
polkadot-overseer = { path = "../../overseer" }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
polkadot-node-jaeger = { path = "../../jaeger" }
|
|
|
|
sc-keystore = { path = "../../../../substrate/client/keystore", default-features = false }
|
|
sp-consensus = { path = "../../../../substrate/primitives/consensus/common", default-features = false }
|
|
sp-consensus-slots = { path = "../../../../substrate/primitives/consensus/slots", default-features = false }
|
|
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto", default-features = false, features = ["full_crypto"] }
|
|
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
async-trait = "0.1.57"
|
|
parking_lot = "0.12.0"
|
|
rand_core = "0.5.1" # should match schnorrkel
|
|
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
|
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
|
sp-core = { path = "../../../../substrate/primitives/core" }
|
|
sp-consensus-babe = { path = "../../../../substrate/primitives/consensus/babe" }
|
|
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
|
assert_matches = "1.4.0"
|
|
kvdb-memorydb = "0.13.0"
|
|
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" }
|