mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 06:48:01 +00:00
128d164f2b
* Make use of parity-codec "derive" crate feature * Bump impl_version * Update wasm files and Cargo.lock files * Transferred to parity_codec derive feature for the rest of the crates * Update wasm binaries and lock files * Update core and node wasm binaries
34 lines
1.1 KiB
TOML
34 lines
1.1 KiB
TOML
[package]
|
|
name = "srml-timestamp"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
hex-literal = "0.1.0"
|
|
serde = { version = "1.0", default-features = false }
|
|
parity-codec = { version = "3.1", default-features = false, features = ["derive"] }
|
|
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false }
|
|
runtime_primitives = { package = "sr-primitives", path = "../../core/sr-primitives", default-features = false }
|
|
inherents = { package = "substrate-inherents", path = "../../core/inherents", default-features = false }
|
|
srml-support = { path = "../support", default-features = false }
|
|
system = { package = "srml-system", path = "../system", default-features = false }
|
|
consensus = { package = "srml-consensus", path = "../consensus", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
runtime_io = { package = "sr-io", path = "../../core/sr-io" }
|
|
substrate-primitives = { path = "../../core/primitives" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"rstd/std",
|
|
"srml-support/std",
|
|
"runtime_primitives/std",
|
|
"consensus/std",
|
|
"serde/std",
|
|
"parity-codec/std",
|
|
"system/std",
|
|
"inherents/std",
|
|
]
|