mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 03:08:06 +00:00
c78478cf03
* Fix warnings in libp2p * Force a reason when you use the fatalist disable_peer * Print more information * Slightly more concise ref-fu * Tracing for figuring out what's going into genesis * Merge * Fxi test
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "substrate-runtime-primitives"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
num-traits = { version = "0.2", default_features = false }
|
|
integer-sqrt = { git = "https://github.com/paritytech/integer-sqrt-rs.git", branch = "master" }
|
|
serde = { version = "1.0", optional = true }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
substrate-codec = { path = "../../codec", default_features = false }
|
|
substrate-primitives = { path = "../../primitives", default_features = false }
|
|
substrate-runtime-std = { path = "../../runtime-std", default_features = false }
|
|
substrate-runtime-io = { path = "../../runtime-io", default_features = false }
|
|
substrate-runtime-support = { path = "../../runtime-support", default_features = false }
|
|
log = {version = "0.3", optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"num-traits/std",
|
|
"serde",
|
|
"serde_derive",
|
|
"log",
|
|
"substrate-runtime-std/std",
|
|
"substrate-runtime-io/std",
|
|
"substrate-runtime-support/std",
|
|
"substrate-codec/std",
|
|
"substrate-primitives/std",
|
|
]
|