mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
dcd77a147c
* Be a little safer with total issuance. * PairT instead of _Pair * Remove rev causing upset * Remove fees stuff. * Fix build (including tests) * Update runtime, bump version * Fix * Handle gas refunds properly. * Rename identifier ala #2025 * Address grumbles * New not-quite-linear-typing API * Slimmer API * More linear-type test fixes * Fix tests * Tidy * Fix some grumbles * Keep unchecked functions private * Remove another less-than-safe currency function and ensure that contracts module can never create cash. * Address a few grumbles and fix tests
73 lines
3.3 KiB
TOML
73 lines
3.3 KiB
TOML
[package]
|
|
name = "node-runtime"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
integer-sqrt = { version = "0.1.2" }
|
|
safe-mix = { version = "1.0", default-features = false }
|
|
parity-codec = { version = "3.2", default-features = false, features = ["derive"] }
|
|
substrate-primitives = { path = "../../core/primitives", default-features = false }
|
|
client = { package = "substrate-client", path = "../../core/client", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false }
|
|
runtime_primitives = { package = "sr-primitives", path = "../../core/sr-primitives", default-features = false }
|
|
version = { package = "sr-version", path = "../../core/sr-version", default-features = false }
|
|
support = { package = "srml-support", path = "../../srml/support", default-features = false }
|
|
aura = { package = "srml-aura", path = "../../srml/aura", default-features = false }
|
|
balances = { package = "srml-balances", path = "../../srml/balances", default-features = false }
|
|
consensus = { package = "srml-consensus", path = "../../srml/consensus", default-features = false }
|
|
contract = { package = "srml-contract", path = "../../srml/contract", default-features = false }
|
|
council = { package = "srml-council", path = "../../srml/council", default-features = false }
|
|
democracy = { package = "srml-democracy", path = "../../srml/democracy", default-features = false }
|
|
executive = { package = "srml-executive", path = "../../srml/executive", default-features = false }
|
|
finality-tracker = { package = "srml-finality-tracker", path = "../../srml/finality-tracker", default-features = false }
|
|
grandpa = { package = "srml-grandpa", path = "../../srml/grandpa", default-features = false }
|
|
indices = { package = "srml-indices", path = "../../srml/indices", default-features = false }
|
|
session = { package = "srml-session", path = "../../srml/session", default-features = false }
|
|
staking = { package = "srml-staking", path = "../../srml/staking", default-features = false }
|
|
system = { package = "srml-system", path = "../../srml/system", default-features = false }
|
|
timestamp = { package = "srml-timestamp", path = "../../srml/timestamp", default-features = false }
|
|
treasury = { package = "srml-treasury", path = "../../srml/treasury", default-features = false }
|
|
sudo = { package = "srml-sudo", path = "../../srml/sudo", default-features = false }
|
|
node-primitives = { path = "../primitives", default-features = false }
|
|
consensus_aura = { package = "substrate-consensus-aura-primitives", path = "../../core/consensus/aura/primitives", default-features = false }
|
|
rustc-hex = { version = "2.0", optional = true }
|
|
hex-literal = { version = "0.1.0", optional = true }
|
|
serde = { version = "1.0", optional = true }
|
|
substrate-keyring = { path = "../../core/keyring", optional = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"parity-codec/std",
|
|
"substrate-primitives/std",
|
|
"rstd/std",
|
|
"runtime_primitives/std",
|
|
"support/std",
|
|
"balances/std",
|
|
"consensus/std",
|
|
"contract/std",
|
|
"council/std",
|
|
"democracy/std",
|
|
"executive/std",
|
|
"grandpa/std",
|
|
"indices/std",
|
|
"session/std",
|
|
"staking/std",
|
|
"system/std",
|
|
"timestamp/std",
|
|
"treasury/std",
|
|
"sudo/std",
|
|
"version/std",
|
|
"node-primitives/std",
|
|
"serde",
|
|
"safe-mix/std",
|
|
"client/std",
|
|
"consensus_aura/std",
|
|
"rustc-hex",
|
|
"hex-literal",
|
|
"serde",
|
|
"substrate-keyring",
|
|
]
|