diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2023-03-14 15:59:23 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-14 15:59:23 +0900 |
commit | e80cc17dc43c26fe9dd1d1fb0dce80fc049cfffd (patch) | |
tree | c58f6679ede5df0e7d83e79e8c4bc7ee5e82c749 /ext/crypto | |
parent | 9aa20b3ba758765863a4c1055097fda399efcfc3 (diff) |
fix(ext/node): add crypto.createCipheriv (#18091)
Diffstat (limited to 'ext/crypto')
-rw-r--r-- | ext/crypto/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml index 45ef6c7a9..3e9dd9135 100644 --- a/ext/crypto/Cargo.toml +++ b/ext/crypto/Cargo.toml @@ -14,12 +14,12 @@ description = "Web Cryptography API implementation for Deno" path = "lib.rs" [dependencies] -aes = "0.8.1" +aes.workspace = true aes-gcm = "0.10" aes-kw = { version = "0.2.1", features = ["alloc"] } base64.workspace = true block-modes = "0.9.1" -cbc = { version = "0.1.2", features = ["alloc"] } +cbc.workspace = true const-oid = "0.9.0" ctr = "0.9.1" # https://github.com/dalek-cryptography/curve25519-dalek/pull/397 |