Files
pezkuwi-subxt/substrate/primitives/consensus/vrf/Cargo.toml
T
David edf73199ab Prepare sp-runtime for publication (#10451)
* Bump versions of sp-core and dependencies to v4.0.0

* Update references from `4.0.0-dev` –> `4.0.0`

* Funny whitespace

* Funny whitespace 2

* Prepare `sp-runtime` for publication
2021-12-15 12:36:17 +01:00

31 lines
964 B
TOML

[package]
name = "sp-consensus-vrf"
version = "0.10.0-dev"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Primitives for VRF based consensus"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/paritytech/substrate/"
homepage = "https://substrate.io"
readme = "README.md"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
codec = { version = "2.0.0", package = "parity-scale-codec", default-features = false }
schnorrkel = { version = "0.9.1", features = ["preaudit_deprecated", "u64_backend"], default-features = false }
sp-std = { version = "4.0.0", path = "../../std", default-features = false }
sp-core = { version = "4.1.0-dev", path = "../../core", default-features = false }
sp-runtime = { version = "4.0.0", default-features = false, path = "../../runtime" }
[features]
default = ["std"]
std = [
"codec/std",
"schnorrkel/std",
"sp-std/std",
"sp-core/std",
"sp-runtime/std",
]