mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 15:07:59 +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.
69 lines
3.1 KiB
TOML
69 lines
3.1 KiB
TOML
[package]
|
|
name = "node-template-runtime"
|
|
version = "2.0.0"
|
|
authors = ["Anonymous"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
aura = { package = "pallet-aura", path = "../../../frame/aura", default-features = false }
|
|
balances = { package = "pallet-balances", path = "../../../frame/balances", default-features = false }
|
|
frame-support = { path = "../../../frame/support", default-features = false }
|
|
grandpa = { package = "pallet-grandpa", path = "../../../frame/grandpa", default-features = false }
|
|
indices = { package = "pallet-indices", path = "../../../frame/indices", default-features = false }
|
|
randomness-collective-flip = { package = "pallet-randomness-collective-flip", path = "../../../frame/randomness-collective-flip", default-features = false }
|
|
sudo = { package = "pallet-sudo", path = "../../../frame/sudo", default-features = false }
|
|
system = { package = "frame-system", path = "../../../frame/system", default-features = false }
|
|
timestamp = { package = "pallet-timestamp", path = "../../../frame/timestamp", default-features = false }
|
|
transaction-payment = { package = "pallet-transaction-payment", path = "../../../frame/transaction-payment", default-features = false }
|
|
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
frame-executive = { path = "../../../frame/executive", default-features = false }
|
|
safe-mix = { version = "1.0.0", default-features = false }
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
sp-api = { path = "../../../primitives/api", default-features = false }
|
|
sp-block-builder = { path = "../../../primitives/block-builder", default-features = false}
|
|
sp-consensus-aura = { path = "../../../primitives/consensus/aura", default-features = false }
|
|
sp-core = { path = "../../../primitives/core", default-features = false }
|
|
sp-inherents = { path = "../../../primitives/inherents", default-features = false}
|
|
sp-io = { path = "../../../primitives/io", default-features = false }
|
|
sp-offchain = { path = "../../../primitives/offchain", default-features = false }
|
|
sp-runtime = { path = "../../../primitives/runtime", default-features = false }
|
|
sp-session = { path = "../../../primitives/session", default-features = false }
|
|
sp-std = { path = "../../../primitives/std", default-features = false }
|
|
sp-transaction-pool = { path = "../../../primitives/transaction-pool", default-features = false }
|
|
sp-version = { path = "../../../primitives/version", default-features = false }
|
|
|
|
[build-dependencies]
|
|
wasm-builder-runner = { package = "substrate-wasm-builder-runner", path = "../../../utils/wasm-builder-runner", version = "1.0.4" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"aura/std",
|
|
"balances/std",
|
|
"codec/std",
|
|
"frame-executive/std",
|
|
"frame-support/std",
|
|
"grandpa/std",
|
|
"indices/std",
|
|
"randomness-collective-flip/std",
|
|
"safe-mix/std",
|
|
"serde",
|
|
"sp-api/std",
|
|
"sp-block-builder/std",
|
|
"sp-consensus-aura/std",
|
|
"sp-core/std",
|
|
"sp-inherents/std",
|
|
"sp-io/std",
|
|
"sp-offchain/std",
|
|
"sp-runtime/std",
|
|
"sp-session/std",
|
|
"sp-std/std",
|
|
"sp-transaction-pool/std",
|
|
"sp-version/std",
|
|
"sudo/std",
|
|
"system/std",
|
|
"timestamp/std",
|
|
"transaction-payment/std",
|
|
]
|