mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-08 01:58:00 +00:00
bb394e08ac
* First iteration to encapsulate schnorrkel and merlin usage * Remove schnorkel direct dependency from BABE pallet * Remove schnorrkel direct dependency from BABE client * Trivial renaming for VrfTranscript data and value * Better errors * Expose a function to get a schnorrkel friendly transcript * Keep the vrf signature stuff together (preventing some clones around) * Fix tests * Remove vrf agnostic transcript and define it as an associated type for VrfSigner and VrfVerifier * Fix babe pallet mock * Inner types are required to be public for polkadot * Update client/consensus/babe/src/verification.rs Co-authored-by: Koute <koute@users.noreply.github.com> * Nit * Remove Deref implementations * make_bytes as a method * Trigger CI --------- Co-authored-by: Koute <koute@users.noreply.github.com>
36 lines
983 B
TOML
36 lines
983 B
TOML
[package]
|
|
name = "sp-keystore"
|
|
version = "0.13.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Keystore primitives."
|
|
documentation = "https://docs.rs/sp-core"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] }
|
|
futures = "0.3.21"
|
|
parking_lot = { version = "0.12.1", default-features = false }
|
|
serde = { version = "1.0", optional = true }
|
|
thiserror = "1.0"
|
|
sp-core = { version = "7.0.0", default-features = false, path = "../core" }
|
|
sp-externalities = { version = "0.13.0", default-features = false, path = "../externalities" }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.7.2"
|
|
rand_chacha = "0.2.2"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"codec/std",
|
|
"serde",
|
|
"sp-core/std",
|
|
"sp-externalities/std",
|
|
]
|