mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 18:07:58 +00:00
e2bb429711
* core/primitives * sr-primitives * sr-primitives * srml-treasury * substrate-executor * substrate-keystore * network-libp2p * substrate-service * srml-system * substrate-rpc * sr-version * substrate-telemetry * substrate-test-runtime * substrate-transaction-pool * node-template-runtime * node-primitives * srml-consensus * srml-contract * srml-democracy * srml-finality-tracker * srml-grandpa * srml-metadata * srml-support * Clean * Update locks
37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[package]
|
|
name = "srml-system"
|
|
version = "1.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
hex-literal = "0.1.0"
|
|
serde = { version = "1.0", optional = true, features = ["derive"] }
|
|
safe-mix = { version = "1.0", default-features = false}
|
|
parity-codec = { version = "3.5", default-features = false, features = ["derive"] }
|
|
substrate-primitives = { path = "../../core/primitives", default-features = false }
|
|
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false }
|
|
runtime_io = { package = "sr-io", path = "../../core/sr-io", default-features = false }
|
|
primitives = { package = "sr-primitives", path = "../../core/sr-primitives", default-features = false }
|
|
srml-support = { path = "../support", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.2"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"serde",
|
|
"safe-mix/std",
|
|
"parity-codec/std",
|
|
"substrate-primitives/std",
|
|
"rstd/std",
|
|
"runtime_io/std",
|
|
"srml-support/std",
|
|
"primitives/std",
|
|
]
|
|
|
|
[[bench]]
|
|
name = "bench"
|
|
harness = false
|