Skip to content

Commit

Permalink
slh-dsa: fix no_std
Browse files Browse the repository at this point in the history
  • Loading branch information
erdnaxe committed Aug 16, 2024
1 parent dccd5aa commit cfda25f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slh-dsa/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ keywords = ["crypto", "signature"]
[dependencies]
hybrid-array = { version = "0.2.0-rc.8", features = ["extra-sizes"] }
typenum = { version = "1.17.0", features = ["const-generics"] }
sha3 = "0.10.8"
sha3 = { version = "0.10.8", default-features = false }
zerocopy = "0.7.34"
zerocopy-derive = "0.7.32"
rand_core = { version = "0.6.4" }
signature = { version = "2.3.0-pre.4", features = ["rand_core"] }
hmac = "0.12.1"
sha2 = "0.10.8"
sha2 = { version = "0.10.8", default-features = false }
digest = "0.10.7"

[dev-dependencies]
Expand Down

0 comments on commit cfda25f

Please sign in to comment.