mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +00:00
32 lines
880 B
TOML
32 lines
880 B
TOML
[package]
|
|
name = "demo-runtime"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
rustc-hex = "1.0"
|
|
hex-literal = "0.1.0"
|
|
log = { version = "0.3", optional = true }
|
|
substrate-codec = { path = "../../substrate/codec" }
|
|
substrate-runtime-std = { path = "../../substrate/runtime-std" }
|
|
substrate-runtime-io = { path = "../../substrate/runtime-io" }
|
|
substrate-runtime-support = { path = "../../substrate/runtime-support" }
|
|
substrate-primitives = { path = "../../substrate/primitives" }
|
|
demo-primitives = { path = "../primitives" }
|
|
integer-sqrt = "0.1.0"
|
|
|
|
[dev-dependencies]
|
|
substrate-keyring = { path = "../../substrate/keyring" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"substrate-codec/std",
|
|
"substrate-runtime-std/std",
|
|
"substrate-runtime-io/std",
|
|
"substrate-runtime-support/std",
|
|
"substrate-primitives/std",
|
|
"demo-primitives/std",
|
|
"log"
|
|
]
|