summaryrefslogtreecommitdiff
path: root/extensions/crypto/Cargo.toml
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2021-06-06 18:57:10 +0800
committerGitHub <noreply@github.com>2021-06-06 12:57:10 +0200
commit3f9187c366be362a219274ded5be9e679b96af98 (patch)
tree75dae6273afd4fa8fb300360df18bcbd2914edfc /extensions/crypto/Cargo.toml
parent633c5aab1f28538dde619fe755f8ec9fa77a3719 (diff)
feat(extensions/crypto): implement subtle.digest (#10796)
Co-authored-by: Yacine Hmito yacinehmito@users.noreply.github.com
Diffstat (limited to 'extensions/crypto/Cargo.toml')
-rw-r--r--extensions/crypto/Cargo.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/extensions/crypto/Cargo.toml b/extensions/crypto/Cargo.toml
index b263b6014..3f4ea1e1a 100644
--- a/extensions/crypto/Cargo.toml
+++ b/extensions/crypto/Cargo.toml
@@ -16,5 +16,7 @@ path = "lib.rs"
[dependencies]
deno_core = { version = "0.88.1", path = "../../core" }
deno_web = { version = "0.38.1", path = "../web" }
+tokio = { version = "1.6.1", features = ["full"] }
rand = "0.8.3"
+ring = "0.16.20"
uuid = { version = "0.8.2", features = ["v4"] }