-
Notifications
You must be signed in to change notification settings - Fork 680
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Introduce Sassafras primitives * Keystore workaround * Fix doc * Use in keystore * Improve bandersnatch vrf docs * Apply review suggestions * Update README * Docs improvement * Docs fix
- Loading branch information
1 parent
ae27384
commit 8186fae
Showing
12 changed files
with
797 additions
and
201 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
[package] | ||
name = "sp-consensus-sassafras" | ||
version = "0.3.4-dev" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
description = "Primitives for Sassafras consensus" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
homepage = "https://substrate.io" | ||
repository = "https://github.com/paritytech/substrate/" | ||
documentation = "https://docs.rs/sp-consensus-sassafras" | ||
readme = "README.md" | ||
publish = false | ||
|
||
[package.metadata.docs.rs] | ||
targets = ["x86_64-unknown-linux-gnu"] | ||
|
||
[dependencies] | ||
scale-codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false } | ||
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] } | ||
serde = { version = "1.0.163", default-features = false, features = ["derive"], optional = true } | ||
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", features = ["bandersnatch-experimental"] } | ||
sp-consensus-slots = { version = "0.10.0-dev", default-features = false, path = "../slots" } | ||
sp-core = { version = "21.0.0", default-features = false, path = "../../core", features = ["bandersnatch-experimental"] } | ||
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 = [ | ||
"scale-codec/std", | ||
"scale-info/std", | ||
"serde/std", | ||
"sp-api/std", | ||
"sp-application-crypto/std", | ||
"sp-consensus-slots/std", | ||
"sp-core/std", | ||
"sp-runtime/std", | ||
"sp-std/std", | ||
] | ||
|
||
# Serde support without relying on std features. | ||
serde = [ | ||
"dep:serde", | ||
"scale-info/serde", | ||
"sp-application-crypto/serde", | ||
"sp-consensus-slots/serde", | ||
"sp-core/serde", | ||
"sp-runtime/serde", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Primitives for SASSAFRAS. | ||
|
||
# ⚠️ WARNING ⚠️ | ||
|
||
The crate interfaces and structures are highly experimental and may be subject | ||
to significant changes. | ||
|
||
Depends on upstream experimental feature: `bandersnatch-experimental`. | ||
|
||
These structs were mostly extracted from the main SASSAFRAS protocol PR: https://github.com/paritytech/substrate/pull/11879. | ||
|
||
Tracking issue: https://github.com/paritytech/polkadot-sdk/issues/41 |
Oops, something went wrong.