summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYusuke Tanaka <yusuktan@maguro.dev>2024-08-23 10:19:20 +0900
committerGitHub <noreply@github.com>2024-08-22 18:19:20 -0700
commit86a42c811488a1167c736ba0d18a852035503dec (patch)
treead2212eee7803ae0e457476af184f9f03a36443c
parentf60640267776638d4699fbf05095dc6d1a9016f0 (diff)
chore(ext/node): bump minimum required version of `dsa` to 0.6.3 (#25154)
This commit bumps the minimum required version of `dsa` crate to 0.6.3. This is preferable because `SigningKey::sign_prehashed_rfc6979` function we use in `deno_node` is available from this version. Ref: [dsa's CHANGELOG.md](https://github.com/RustCrypto/signatures/blob/132b04631409db1ca805aba2f62830c8e359b29f/dsa/CHANGELOG.md#063-2024-01-28)
-rw-r--r--ext/node/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/Cargo.toml b/ext/node/Cargo.toml
index 7ced8ac4c..800b8f591 100644
--- a/ext/node/Cargo.toml
+++ b/ext/node/Cargo.toml
@@ -38,7 +38,7 @@ deno_permissions.workspace = true
deno_whoami = "0.1.0"
der = { version = "0.7.9", features = ["derive"] }
digest = { version = "0.10.5", features = ["core-api", "std"] }
-dsa = "0.6.1"
+dsa = "0.6.3"
ecb.workspace = true
ecdsa = "0.16.9"
ed25519-dalek = { version = "2.1.1", features = ["digest", "pkcs8", "rand_core", "signature"] }