Files
pezkuwi-subxt/substrate/primitives/consensus/aura/Cargo.toml
T
Bastian Köcher 15e15e7d8e Aura and Slots refactoring (#8386)
* Make slot duration being exposed as `Duration` to the outside

* Some slot info love

* Add `build_aura_worker` utility function

* Copy copy copy
2021-03-17 23:25:58 +00:00

39 lines
1.3 KiB
TOML

[package]
name = "sp-consensus-aura"
version = "0.9.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Primitives for Aura consensus"
edition = "2018"
license = "Apache-2.0"
homepage = "https://substrate.dev"
repository = "https://github.com/paritytech/substrate/"
readme = "README.md"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
sp-application-crypto = { version = "3.0.0", default-features = false, path = "../../application-crypto" }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }
sp-std = { version = "3.0.0", default-features = false, path = "../../std" }
sp-api = { version = "3.0.0", default-features = false, path = "../../api" }
sp-runtime = { version = "3.0.0", default-features = false, path = "../../runtime" }
sp-inherents = { version = "3.0.0", default-features = false, path = "../../inherents" }
sp-timestamp = { version = "3.0.0", default-features = false, path = "../../timestamp" }
sp-consensus-slots = { version = "0.9.0", default-features = false, path = "../slots" }
sp-consensus = { version = "0.9.0", path = "../common", optional = true }
[features]
default = ["std"]
std = [
"sp-application-crypto/std",
"codec/std",
"sp-std/std",
"sp-api/std",
"sp-runtime/std",
"sp-inherents/std",
"sp-timestamp/std",
"sp-consensus-slots/std",
"sp-consensus",
]