Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
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
Next Next commit
srml/authority-discovery/Cargo: Move babe to dev-dependencies
  • Loading branch information
mxinden committed Sep 27, 2019
commit b3eae717c6cd6cfa6f18b7b8f1fe3a13cc474189
3 changes: 1 addition & 2 deletions srml/authority-discovery/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ edition = "2018"

[dependencies]
app-crypto = { package = "substrate-application-crypto", path = "../../core/application-crypto", default-features = false }
babe-primitives = { package = "substrate-consensus-babe-primitives", path = "../../core/consensus/babe/primitives", default-features = false }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
primitives = { package = "substrate-primitives", path = "../../core/primitives", default-features = false }
rstd = { package = "sr-std", path = "../../core/sr-std", default-features = false }
Expand All @@ -18,13 +17,13 @@ support = { package = "srml-support", path = "../support", default-features = fa
system = { package = "srml-system", path = "../system", default-features = false }

[dev-dependencies]
babe-primitives = { package = "substrate-consensus-babe-primitives", path = "../../core/consensus/babe/primitives", default-features = false }
sr-staking-primitives = { path = "../../core/sr-staking-primitives", default-features = false }

[features]
default = ["std"]
std = [
"app-crypto/std",
"babe-primitives/std",
"codec/std",
"primitives/std",
"rstd/std",
Expand Down