Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Zepter format
  • Loading branch information
davxy committed Aug 24, 2023
commit f62e9c93134f17ba6f413a59b2e84ca7dca048eb
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ sc-keystore = { path = "client/keystore" }

# Feature to unlock "Sassafras" experimental crates
[features]
sassafras-experimental = [
"sp-consensus-sassafras",
sassafras-experimental = [
"sc-keystore/bandersnatch-experimental",
"sp-consensus-sassafras",
]

# Exists here to be backwards compatible and to support `cargo run` in the workspace.
Expand Down
18 changes: 9 additions & 9 deletions primitives/consensus/sassafras/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ sp-runtime = { version = "24.0.0", default-features = false, path = "../../runti
sp-std = { version = "8.0.0", default-features = false, path = "../../std" }

[features]
default = ["std"]
default = [ "std" ]
std = [
"scale-codec/std",
"scale-info/std",
"serde/std",
"sp-api/std",
"sp-application-crypto/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",
"sp-core/std",
"sp-runtime/std",
"sp-std/std",
]

# Serde support without relying on std features.
Expand Down