mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 12:48:00 +00:00
5e889431d3
* Wasm-builder-runner unset `CARGO_TARGET_DIR` and release 1.0.4 `CARGO_TARGET_DIR` needs to be unset or otherwise cargo deadlocks, because cargo always holds an exclusive lock on target dir. * Commit missing version up * Lock file
62 lines
2.9 KiB
TOML
62 lines
2.9 KiB
TOML
[package]
|
|
name = "node-template-runtime"
|
|
version = "2.0.0"
|
|
authors = ["Anonymous"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
|
safe-mix = { version = "1.0.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 }
|
|
aura-primitives = { package = "substrate-consensus-aura-primitives", path = "../../core/consensus/aura/primitives", default_features = false }
|
|
grandpa = { package = "srml-grandpa", path = "../../srml/grandpa", default_features = false }
|
|
executive = { package = "srml-executive", path = "../../srml/executive", default_features = false }
|
|
indices = { package = "srml-indices", path = "../../srml/indices", default_features = false }
|
|
randomness-collective-flip = { package = "srml-randomness-collective-flip", path = "../../srml/randomness-collective-flip", 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 }
|
|
transaction-payment = { package = "srml-transaction-payment", path = "../../srml/transaction-payment", default_features = false }
|
|
sr-primitives = { path = "../../core/sr-primitives", default_features = false }
|
|
client = { package = "substrate-client", path = "../../core/client", 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.4" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"client/std",
|
|
"rstd/std",
|
|
"runtime-io/std",
|
|
"support/std",
|
|
"balances/std",
|
|
"aura/std",
|
|
"aura-primitives/std",
|
|
"grandpa/std",
|
|
"executive/std",
|
|
"indices/std",
|
|
"primitives/std",
|
|
"sr-primitives/std",
|
|
"randomness-collective-flip/std",
|
|
"system/std",
|
|
"timestamp/std",
|
|
"sudo/std",
|
|
"transaction-payment/std",
|
|
"version/std",
|
|
"serde",
|
|
"safe-mix/std",
|
|
"offchain-primitives/std",
|
|
"substrate-session/std",
|
|
]
|