Skip to content

Commit

Permalink
Disable default features for strum (paritytech#13326)
Browse files Browse the repository at this point in the history
  • Loading branch information
koute authored and ltfschoen committed Feb 22, 2023
1 parent dc4d188 commit 7970fac
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 7970fac

Please sign in to comment.