1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/ext/crypto/Cargo.toml

44 lines
1.1 KiB
TOML
Raw Permalink Normal View History

# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_crypto"
version = "0.176.0"
2022-11-22 15:07:35 -05:00
authors.workspace = true
edition.workspace = true
license.workspace = true
readme = "README.md"
2022-11-22 15:07:35 -05:00
repository.workspace = true
description = "Web Cryptography API implementation for Deno"
[lib]
path = "lib.rs"
[dependencies]
aes.workspace = true
2022-09-16 19:11:30 -04:00
aes-gcm = "0.10"
aes-kw = { version = "0.2.1", features = ["alloc"] }
2022-11-22 15:07:35 -05:00
base64.workspace = true
cbc.workspace = true
const-oid = "0.9.0"
ctr = "0.9.1"
curve25519-dalek = "4.1.3"
2022-11-22 15:07:35 -05:00
deno_core.workspace = true
deno_web.workspace = true
2023-11-04 00:29:25 -04:00
elliptic-curve = { version = "0.13.1", features = ["std", "pem"] }
num-traits = "0.2.14"
2022-11-22 15:07:35 -05:00
once_cell.workspace = true
2023-11-04 00:29:25 -04:00
p256 = { version = "0.13.2", features = ["ecdh"] }
p384 = "0.13.0"
p521 = "0.13.3"
2022-11-22 15:07:35 -05:00
rand.workspace = true
ring = { workspace = true, features = ["std"] }
rsa.workspace = true
2022-11-22 15:07:35 -05:00
serde.workspace = true
serde_bytes.workspace = true
sha1.workspace = true
2022-11-22 15:07:35 -05:00
sha2.workspace = true
signature.workspace = true
spki.workspace = true
2022-11-22 15:07:35 -05:00
uuid.workspace = true
2023-11-04 00:29:25 -04:00
x25519-dalek = "2.0.0"