0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-10 14:17:49 -04:00
deno/ext/crypto/Cargo.toml
denobot d91402ae20
chore: forward v2.2.3 release commit to main (#28391)
This is the release commit being forwarded back to main for 2.2.3

Co-authored-by: littledivy <littledivy@users.noreply.github.com>
2025-03-05 05:57:04 +00:00

46 lines
1.2 KiB
TOML

# Copyright 2018-2025 the Deno authors. MIT license.
[package]
name = "deno_crypto"
version = "0.208.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
readme = "README.md"
repository.workspace = true
description = "Web Cryptography API implementation for Deno"
[lib]
path = "lib.rs"
[dependencies]
aes.workspace = true
aes-gcm.workspace = true
aes-kw = { workspace = true, features = ["alloc"] }
base64.workspace = true
cbc.workspace = true
const-oid.workspace = true
ctr.workspace = true
curve25519-dalek.workspace = true
deno_core.workspace = true
deno_error.workspace = true
deno_web.workspace = true
ed448-goldilocks = { workspace = true, features = ["zeroize"] }
elliptic-curve = { workspace = true, features = ["std", "pem"] }
num-traits.workspace = true
once_cell.workspace = true
p256 = { workspace = true, features = ["ecdh"] }
p384.workspace = true
p521.workspace = true
rand.workspace = true
ring = { workspace = true, features = ["std"] }
rsa.workspace = true
serde.workspace = true
serde_bytes.workspace = true
sha1.workspace = true
sha2.workspace = true
spki.workspace = true
thiserror.workspace = true
tokio.workspace = true
uuid.workspace = true
x25519-dalek.workspace = true