1
0
mirror of https://github.com/pcvolkmer/osc-variant.git synced 2025-07-02 16:52:55 +00:00

chore: use Rust Crypto SHA implementation

This commit is contained in:
2024-12-09 22:05:36 +01:00
parent 37d945d016
commit b242703452
3 changed files with 47 additions and 129 deletions

View File

@ -19,13 +19,14 @@ serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
quick-xml = { version = "0.37", features = ["escape-html", "serialize"], default-features = false }
console = "0.15"
sha256 = "1.5"
dialoguer = "0.11"
indicatif = "0.17"
deob = { path = "libs/deob", version = "*", optional = true }
zip = { version = "2.2", optional = true }
bytes = "1.8"
bytes = "1.9"
sha2 = { version = "0.10", default-features = false }
base16ct = { version = "0.2", features = ["alloc"] }
[features]
# Requires env var OSB_KEY to be present at build time
@ -48,6 +49,7 @@ panic = "abort"
unwrap_used = "deny"
expect_used = "deny"
panic = "deny"
pedantic = { level = "warn", priority = -1 }
[lints.rust]
unused_must_use = "deny"