Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Disable default features for strum (#13326)
Browse files Browse the repository at this point in the history
  • Loading branch information
koute authored Feb 7, 2023
1 parent 41ae908 commit 3d60070
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion primitives/beefy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ sp-io = { version = "7.0.0", default-features = false, path = "../io" }
sp-mmr-primitives = { version = "4.0.0-dev", default-features = false, path = "../merkle-mountain-range" }
sp-runtime = { version = "7.0.0", default-features = false, path = "../runtime" }
sp-std = { version = "5.0.0", default-features = false, path = "../std" }
strum = { version = "0.24.1", features = ["derive"] }
strum = { version = "0.24.1", features = ["derive"], default-features = false }
lazy_static = "1.4.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion primitives/keyring/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
lazy_static = "1.4.0"
strum = { version = "0.24.1", features = ["derive"] }
strum = { version = "0.24.1", features = ["derive"], default-features = false }
sp-core = { version = "7.0.0", path = "../core" }
sp-runtime = { version = "7.0.0", path = "../runtime" }

0 comments on commit 3d60070

Please sign in to comment.