mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-06 03:18:01 +00:00
6da9f59d72
* primitives/sr-std -> primitives/std * fix * fix conflict * rstd -> sp-std * git mv * fix review * fix merge
45 lines
1.7 KiB
TOML
45 lines
1.7 KiB
TOML
[package]
|
|
name = "pallet-aura"
|
|
version = "2.0.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
app-crypto = { package = "sc-application-crypto", path = "../../primitives/application-crypto", default-features = false }
|
|
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
|
inherents = { package = "sp-inherents", path = "../../primitives/inherents", default-features = false }
|
|
primitives = { package = "sp-core", path = "../../primitives/core", default-features = false }
|
|
sp-std = { path = "../../primitives/std", default-features = false }
|
|
serde = { version = "1.0.101", optional = true }
|
|
session = { package = "pallet-session", path = "../session", default-features = false }
|
|
sp-runtime = { path = "../../primitives/runtime", default-features = false }
|
|
runtime-io ={ package = "sp-io", path = "../../primitives/sr-io", default-features = false }
|
|
support = { package = "frame-support", path = "../support", default-features = false }
|
|
sp-consensus-aura = { path = "../../primitives/consensus/aura", default-features = false}
|
|
system = { package = "frame-system", path = "../system", default-features = false }
|
|
sp-timestamp = { package = "sp-timestamp", path = "../../primitives/timestamp", default-features = false }
|
|
pallet-timestamp = { package = "pallet-timestamp", path = "../timestamp", default-features = false }
|
|
|
|
|
|
[dev-dependencies]
|
|
lazy_static = "1.4.0"
|
|
parking_lot = "0.9.0"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"app-crypto/std",
|
|
"codec/std",
|
|
"inherents/std",
|
|
"runtime-io/std",
|
|
"primitives/std",
|
|
"sp-std/std",
|
|
"serde",
|
|
"sp-runtime/std",
|
|
"support/std",
|
|
"sp-consensus-aura/std",
|
|
"system/std",
|
|
"sp-timestamp/std",
|
|
"pallet-timestamp/std",
|
|
]
|