mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 09:57:56 +00:00
38 lines
1.1 KiB
TOML
38 lines
1.1 KiB
TOML
[package]
|
|
name = "sp-authority-discovery"
|
|
version = "4.0.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Authority discovery primitives"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1", default-features = false }
|
|
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
|
|
sp-api = { version = "4.0.0-dev", default-features = false, path = "../api" }
|
|
sp-application-crypto = { version = "23.0.0", default-features = false, path = "../application-crypto" }
|
|
sp-runtime = { version = "24.0.0", default-features = false, path = "../runtime" }
|
|
sp-std = { version = "8.0.0", default-features = false, path = "../std" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"scale-info/std",
|
|
"sp-api/std",
|
|
"sp-application-crypto/std",
|
|
"sp-runtime/std",
|
|
"sp-std/std",
|
|
]
|
|
serde = [
|
|
"scale-info/serde",
|
|
"sp-application-crypto/serde",
|
|
"sp-runtime/serde",
|
|
]
|