summaryrefslogtreecommitdiff
path: root/ext/crypto/Cargo.toml
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2021-10-11 20:07:51 +0530
committerGitHub <noreply@github.com>2021-10-11 16:37:51 +0200
commit3b2cb8e7113b19344209eddc8bc1bd447fcec4ea (patch)
tree616169290b703184047ad7beb4b9c79011a2a6ef /ext/crypto/Cargo.toml
parent426ebf854a82c63cdaa2413fbd1b005025dba95b (diff)
feat(ext/crypto): implement AES-CBC encryption & decryption (#12123)
* initial stuff * stuff * merge stuff * cleanup * fmt * length * update lockfile * decrypt * fixy * clippy hello? * hmm * fixs * fix lint * add AesCbcParams * fixes * fixy * lockfile fixy * fix dumb assertions * re run CI * rerun CI * rerun CI
Diffstat (limited to 'ext/crypto/Cargo.toml')
-rw-r--r--ext/crypto/Cargo.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml
index 060845b70..16839d8d1 100644
--- a/ext/crypto/Cargo.toml
+++ b/ext/crypto/Cargo.toml
@@ -14,6 +14,8 @@ description = "Web Cryptography API implementation for Deno"
path = "lib.rs"
[dependencies]
+aes = "0.7.5"
+block-modes = "0.8.1"
deno_core = { version = "0.102.0", path = "../../core" }
deno_web = { version = "0.51.0", path = "../web" }
lazy_static = "1.4.0"