mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
chore: use sha1 crate, not sha-1 (#24306)
This commit is contained in:
parent
416df1e895
commit
973d186e8f
3 changed files with 3 additions and 2 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1704,7 +1704,7 @@ dependencies = [
|
||||||
"scrypt",
|
"scrypt",
|
||||||
"sec1",
|
"sec1",
|
||||||
"serde",
|
"serde",
|
||||||
"sha-1",
|
"sha1",
|
||||||
"sha2",
|
"sha2",
|
||||||
"signature",
|
"signature",
|
||||||
"simd-json",
|
"simd-json",
|
||||||
|
|
|
@ -160,6 +160,7 @@ serde = { version = "1.0.149", features = ["derive"] }
|
||||||
serde_bytes = "0.11"
|
serde_bytes = "0.11"
|
||||||
serde_json = "1.0.85"
|
serde_json = "1.0.85"
|
||||||
serde_repr = "=0.1.16"
|
serde_repr = "=0.1.16"
|
||||||
|
sha1 = { version = "0.10.6", features = ["oid"] }
|
||||||
sha2 = { version = "0.10.8", features = ["oid"] }
|
sha2 = { version = "0.10.8", features = ["oid"] }
|
||||||
signature = "2.1"
|
signature = "2.1"
|
||||||
slab = "0.4"
|
slab = "0.4"
|
||||||
|
|
|
@ -68,7 +68,7 @@ rsa.workspace = true
|
||||||
scrypt = "0.11.0"
|
scrypt = "0.11.0"
|
||||||
sec1 = "0.7"
|
sec1 = "0.7"
|
||||||
serde = "1.0.149"
|
serde = "1.0.149"
|
||||||
sha-1 = "0.10.0"
|
sha1.workspace = true
|
||||||
sha2.workspace = true
|
sha2.workspace = true
|
||||||
signature.workspace = true
|
signature.workspace = true
|
||||||
simd-json = "0.13.4"
|
simd-json = "0.13.4"
|
||||||
|
|
Loading…
Reference in a new issue