mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 22:47:56 +00:00
14bb115193
* Scale trait and move to u32 blocknumbers. * Fixes * Cleanups * Update node/runtime/src/lib.rs Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com> * Fix up some of the factory stuff. * Update core/sr-primitives/src/traits.rs Co-Authored-By: Shawn Tabrizi <shawntabrizi@gmail.com> * Move Nonce/Index to u32 (#3361) * Force a non-borked version of upstream crate * Line lengths and runtime version bump
58 lines
2.5 KiB
TOML
58 lines
2.5 KiB
TOML
[package]
|
|
name = "node-template-runtime"
|
|
version = "2.0.0"
|
|
authors = ["Anonymous"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0", optional = true, features = ["derive"] }
|
|
safe-mix = { version = "1.0", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
rstd = { package = "sr-std", path = "../../core/sr-std", default_features = false }
|
|
runtime-io = { package = "sr-io", path = "../../core/sr-io", default_features = false }
|
|
version = { package = "sr-version", path = "../../core/sr-version", default_features = false }
|
|
support = { package = "srml-support", path = "../../srml/support", default_features = false }
|
|
primitives = { package = "substrate-primitives", path = "../../core/primitives", default_features = false }
|
|
substrate-session = { path = "../../core/session", default-features = false }
|
|
balances = { package = "srml-balances", path = "../../srml/balances", default_features = false }
|
|
aura = { package = "srml-aura", path = "../../srml/aura", default_features = false }
|
|
executive = { package = "srml-executive", path = "../../srml/executive", default_features = false }
|
|
indices = { package = "srml-indices", path = "../../srml/indices", default_features = false }
|
|
system = { package = "srml-system", path = "../../srml/system", default_features = false }
|
|
timestamp = { package = "srml-timestamp", path = "../../srml/timestamp", default_features = false }
|
|
sudo = { package = "srml-sudo", path = "../../srml/sudo", default_features = false }
|
|
sr-primitives = { path = "../../core/sr-primitives", default_features = false }
|
|
client = { package = "substrate-client", path = "../../core/client", default_features = false }
|
|
consensus-aura = { package = "substrate-consensus-aura-primitives", path = "../../core/consensus/aura/primitives", default_features = false }
|
|
offchain-primitives = { package = "substrate-offchain-primitives", path = "../../core/offchain/primitives", default-features = false }
|
|
|
|
[build-dependencies]
|
|
wasm-builder-runner = { package = "substrate-wasm-builder-runner", version = "1.0.2" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"client/std",
|
|
"rstd/std",
|
|
"runtime-io/std",
|
|
"support/std",
|
|
"balances/std",
|
|
"executive/std",
|
|
"aura/std",
|
|
"indices/std",
|
|
"primitives/std",
|
|
"sr-primitives/std",
|
|
"system/std",
|
|
"timestamp/std",
|
|
"sudo/std",
|
|
"version/std",
|
|
"serde",
|
|
"safe-mix/std",
|
|
"consensus-aura/std",
|
|
"offchain-primitives/std",
|
|
"substrate-session/std",
|
|
]
|
|
no_std = []
|