Skip to content

Commit

Permalink
fix no_std
Browse files Browse the repository at this point in the history
  • Loading branch information
conradoplg committed Nov 22, 2023
1 parent 8f39874 commit 4554e90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pkcs8 = { version = "0.10.1", optional = true, features = ["alloc", "pem"] }
rand_core = "0.6"
serde = { version = "1", default-features = false, optional = true, features = ["derive"] }
sha2 = { version = "0.10", default-features = false }
subtle = "2.5.0"
subtle = { version = "2.5.0", default-features = false }
zeroize = { version = "1.5", features = [ "zeroize_derive" ] }

[dev-dependencies]
Expand All @@ -46,7 +46,7 @@ default = ["serde", "std"]
pem = ["der", "ed25519/pem"]
pkcs8 = ["dep:pkcs8"]
serde = ["dep:serde", "ed25519/serde"]
std = ["ed25519/std"]
std = ["ed25519/std", "subtle/std"]

[[test]]
name = "rfc8032"
Expand Down

0 comments on commit 4554e90

Please sign in to comment.