mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14: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>
57 lines
2.1 KiB
TOML
57 lines
2.1 KiB
TOML
[package]
|
|
name = "node-executor"
|
|
version = "3.0.0-dev"
|
|
authors.workspace = true
|
|
description = "Substrate node implementation in Rust."
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
publish = false
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
|
scale-info = { version = "2.5.0", features = ["derive"] }
|
|
frame-benchmarking = { path = "../../../frame/benchmarking" }
|
|
node-primitives = { path = "../primitives" }
|
|
kitchensink-runtime = { path = "../runtime" }
|
|
sc-executor = { path = "../../../client/executor" }
|
|
sp-core = { path = "../../../primitives/core" }
|
|
sp-keystore = { path = "../../../primitives/keystore" }
|
|
sp-state-machine = { path = "../../../primitives/state-machine" }
|
|
sp-tracing = { path = "../../../primitives/tracing" }
|
|
sp-trie = { path = "../../../primitives/trie" }
|
|
sp-statement-store = { path = "../../../primitives/statement-store" }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.4.0"
|
|
futures = "0.3.21"
|
|
wat = "1.0"
|
|
frame-support = { path = "../../../frame/support" }
|
|
frame-system = { path = "../../../frame/system" }
|
|
node-testing = { path = "../testing" }
|
|
pallet-balances = { path = "../../../frame/balances" }
|
|
pallet-contracts = { path = "../../../frame/contracts" }
|
|
pallet-im-online = { path = "../../../frame/im-online" }
|
|
pallet-glutton = { path = "../../../frame/glutton" }
|
|
pallet-sudo = { path = "../../../frame/sudo" }
|
|
pallet-timestamp = { path = "../../../frame/timestamp" }
|
|
pallet-treasury = { path = "../../../frame/treasury" }
|
|
pallet-transaction-payment = { path = "../../../frame/transaction-payment" }
|
|
sp-application-crypto = { path = "../../../primitives/application-crypto" }
|
|
pallet-root-testing = { path = "../../../frame/root-testing" }
|
|
sp-consensus-babe = { path = "../../../primitives/consensus/babe" }
|
|
sp-externalities = { path = "../../../primitives/externalities" }
|
|
sp-keyring = { path = "../../../primitives/keyring" }
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
|
|
[features]
|
|
stress-test = []
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|