sysutils: remove force-soft from sha2

Now that the FPU context is saved properly, sha256sum is no longer
broken when doing ops on the FPU.
This commit is contained in:
Mark Poliakov 2024-03-14 00:53:28 +02:00
parent 281b280e8d
commit 071d8c448c
2 changed files with 3 additions and 3 deletions

4
userspace/Cargo.lock generated
View File

@ -57,9 +57,9 @@ dependencies = [
[[package]]
name = "bytemuck"
version = "1.14.3"
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2ef034f05691a48569bd920a96c81b9d91bbad1ab5ac7c4616c1f6ef36cb79f"
checksum = "5d6d68c57235a3a081186990eca2867354726650f42f7516ca50c28d6281fd15"
dependencies = [
"bytemuck_derive",
]

View File

@ -17,7 +17,7 @@ humansize = { version = "2.1.3", features = ["impl_style"] }
rand = { git = "https://git.alnyan.me/yggdrasil/rand.git", branch = "alnyan/yggdrasil" }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.111"
sha2 = { version = "0.10.8", features = ["force-soft"] }
sha2 = { version = "0.10.8" }
init = { path = "../init" }