summaryrefslogtreecommitdiff
path: root/ext/crypto
diff options
context:
space:
mode:
Diffstat (limited to 'ext/crypto')
-rw-r--r--ext/crypto/Cargo.toml30
1 files changed, 15 insertions, 15 deletions
diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml
index de324e22a..ba4e628a1 100644
--- a/ext/crypto/Cargo.toml
+++ b/ext/crypto/Cargo.toml
@@ -3,11 +3,11 @@
[package]
name = "deno_crypto"
version = "0.92.0"
-authors = ["the Deno authors"]
-edition = "2021"
-license = "MIT"
+authors.workspace = true
+edition.workspace = true
+license.workspace = true
readme = "README.md"
-repository = "https://github.com/denoland/deno"
+repository.workspace = true
description = "Web Cryptography API implementation for Deno"
[lib]
@@ -17,30 +17,30 @@ path = "lib.rs"
aes = "0.8.1"
aes-gcm = "0.10"
aes-kw = { version = "0.2.1", features = ["alloc"] }
-base64 = "0.13.0"
+base64.workspace = true
block-modes = "0.9.1"
cbc = { version = "0.1.2", features = ["alloc"] }
const-oid = "0.9.0"
ctr = "0.9.1"
# https://github.com/dalek-cryptography/curve25519-dalek/pull/397
curve25519-dalek = "2.1.3"
-deno_core = { version = "0.160.0", path = "../../core" }
-deno_web = { version = "0.109.0", path = "../web" }
+deno_core.workspace = true
+deno_web.workspace = true
elliptic-curve = { version = "0.12.1", features = ["std", "pem"] }
num-traits = "0.2.14"
-once_cell = "1.10.0"
+once_cell.workspace = true
p256 = { version = "0.11.1", features = ["ecdh"] }
p384 = "0.11.1"
-rand = "0.8.4"
-ring = { version = "0.16.20", features = ["std"] }
+rand.workspace = true
+ring = { workspace = true, features = ["std"] }
rsa = { version = "=0.7.0-pre", default-features = false, features = ["std"] }
sec1 = "0.3.0"
-serde = { version = "1.0.129", features = ["derive"] }
-serde_bytes = "0.11"
+serde.workspace = true
+serde_bytes.workspace = true
sha-1 = "0.10.0"
-sha2 = "0.10.2"
+sha2.workspace = true
spki = "0.6.0"
-tokio = { version = "1.21", features = ["full"] }
-uuid = { version = "1.0.0", features = ["v4"] }
+tokio.workspace = true
+uuid.workspace = true
# https://github.com/dalek-cryptography/x25519-dalek/pull/89
x25519-dalek = "2.0.0-pre.1"