mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 13:07:56 +00:00
37 lines
1.2 KiB
TOML
37 lines
1.2 KiB
TOML
[package]
|
|
name = "substrate-primitives"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
|
|
[dependencies]
|
|
crunchy = "0.1"
|
|
substrate-runtime-std = { path = "../runtime-std", default_features = false }
|
|
substrate-codec = { path = "../codec", default_features = false }
|
|
fixed-hash = { git = "https://github.com/rphmeier/primitives.git", branch = "compile-for-wasm", default_features = false }
|
|
rustc-hex = { git = "https://github.com/rphmeier/rustc-hex.git", version = "2.0", default_features = false }
|
|
serde = { version = "1.0", default_features = false }
|
|
serde_derive = { version = "1.0", optional = true }
|
|
uint = { git = "https://github.com/rphmeier/primitives.git", branch = "compile-for-wasm", default_features = false }
|
|
twox-hash = { version = "1.1.0", optional = true }
|
|
byteorder = { version = "1.1", default_features = false }
|
|
blake2-rfc = { version = "0.2.18", optional = true }
|
|
|
|
[dev-dependencies]
|
|
substrate-serializer = { path = "../serializer" }
|
|
pretty_assertions = "0.4"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"uint/std",
|
|
"fixed-hash/std",
|
|
"substrate-codec/std",
|
|
"substrate-runtime-std/std",
|
|
"serde/std",
|
|
"rustc-hex/std",
|
|
"twox-hash",
|
|
"blake2-rfc",
|
|
"serde_derive",
|
|
"byteorder/std"
|
|
]
|