mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 08:47:57 +00:00
8778ca7dc8
* Rename: Phase 1. * Unify codec. * Fixing: Phase 2 * Fixing: Phase 3. * Fixing: Phase 4. * Fixing: Phase 5. * Fixing: Phase 6. * Fixing: Phase 7. * Fixing: Phase 8. Tests * Fixing: Phase 9. Tests!!! * Fixing: Phase 10. Moar tests! * Finally done! * More fixes. * Rename primitives:: to sp_core:: * Apply renames in finality-grandpa. * Fix benches. * Fix benches 2. * Revert node-template. * Fix frame-system in our modules.
48 lines
1.5 KiB
TOML
48 lines
1.5 KiB
TOML
[package]
|
|
name = "node-executor"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Substrate node implementation in Rust."
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
trie-root = "0.15.2"
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
sp-io = { path = "../../../primitives/io" }
|
|
sp-state-machine = { path = "../../../primitives/state-machine" }
|
|
sc-executor = { path = "../../../client/executor" }
|
|
sp-core = { path = "../../../primitives/core" }
|
|
sp-trie = { path = "../../../primitives/trie" }
|
|
node-primitives = { path = "../primitives" }
|
|
node-runtime = { path = "../runtime" }
|
|
|
|
[dev-dependencies]
|
|
node-testing = { path = "../testing" }
|
|
substrate-test-client = { path = "../../../test-utils/client" }
|
|
sp-runtime = { path = "../../../primitives/runtime" }
|
|
frame-support = { path = "../../../frame/support" }
|
|
pallet-balances = { path = "../../../frame/balances" }
|
|
pallet-transaction-payment = { path = "../../../frame/transaction-payment" }
|
|
pallet-session = { path = "../../../frame/session" }
|
|
frame-system = { path = "../../../frame/system" }
|
|
pallet-timestamp = { path = "../../../frame/timestamp" }
|
|
pallet-treasury = { path = "../../../frame/treasury" }
|
|
pallet-contracts = { path = "../../../frame/contracts" }
|
|
pallet-grandpa = { path = "../../../frame/grandpa" }
|
|
pallet-indices = { path = "../../../frame/indices" }
|
|
wabt = "0.9.2"
|
|
criterion = "0.3.0"
|
|
|
|
[features]
|
|
wasmtime = [
|
|
"sc-executor/wasmtime",
|
|
]
|
|
wasmi-errno = [
|
|
"sc-executor/wasmi-errno",
|
|
]
|
|
stress-test = []
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|