chore: use sha1 crate, not sha-1 (#24306)

This commit is contained in:
Luca Casonato 2024-06-23 16:39:14 +02:00 committed by GitHub
parent 416df1e895
commit 973d186e8f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

2
Cargo.lock generated
View File

@ -1704,7 +1704,7 @@ dependencies = [
"scrypt",
"sec1",
"serde",
"sha-1",
"sha1",
"sha2",
"signature",
"simd-json",

View File

@ -160,6 +160,7 @@ serde = { version = "1.0.149", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1.0.85"
serde_repr = "=0.1.16"
sha1 = { version = "0.10.6", features = ["oid"] }
sha2 = { version = "0.10.8", features = ["oid"] }
signature = "2.1"
slab = "0.4"

View File

@ -68,7 +68,7 @@ rsa.workspace = true
scrypt = "0.11.0"
sec1 = "0.7"
serde = "1.0.149"
sha-1 = "0.10.0"
sha1.workspace = true
sha2.workspace = true
signature.workspace = true
simd-json = "0.13.4"