bfc2cc5284
Replace all docs.rs documentation URLs with documentation.workspace = true to inherit from the workspace's docs.pezkuwichain.io URL.
33 lines
934 B
TOML
33 lines
934 B
TOML
[package]
|
|
name = "pezsp-keyring"
|
|
version = "31.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Keyring support code for the runtime. A set of test accounts."
|
|
documentation.workspace = true
|
|
readme = "README.md"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
pezsp-core = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
strum = { features = ["derive"], workspace = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["pezsp-core/std", "pezsp-runtime/std", "strum/std"]
|
|
|
|
# This feature adds Bandersnatch crypto primitives.
|
|
# It should not be used in production since the implementation and interface may still
|
|
# be subject to significant changes.
|
|
bandersnatch-experimental = ["pezsp-core/bandersnatch-experimental"]
|
|
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
|