2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2020-11-13 16:01:57 -05:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_crypto"
|
2022-06-23 17:27:41 -04:00
|
|
|
version = "0.72.0"
|
2020-11-13 16:01:57 -05:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
2020-11-13 16:01:57 -05:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "Web Cryptography API implementation for Deno"
|
2020-11-13 16:01:57 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-06-20 07:23:57 -04:00
|
|
|
aes = "0.8.1"
|
|
|
|
# TODO(@littledivy): Move to stable release
|
|
|
|
# https://github.com/RustCrypto/AEADs/issues/411
|
|
|
|
aes-gcm = "0.10.0-pre"
|
|
|
|
aes-kw = { version = "0.2.1", features = ["alloc"] }
|
2021-12-10 16:23:19 -05:00
|
|
|
base64 = "0.13.0"
|
2022-06-20 07:23:57 -04:00
|
|
|
block-modes = "0.9.1"
|
|
|
|
cbc = { version = "0.1.2", features = ["alloc"] }
|
|
|
|
const-oid = "0.9.0"
|
|
|
|
ctr = "0.9.1"
|
2022-06-23 17:27:41 -04:00
|
|
|
deno_core = { version = "0.140.0", path = "../../core" }
|
|
|
|
deno_web = { version = "0.89.0", path = "../web" }
|
2022-06-20 07:23:57 -04:00
|
|
|
elliptic-curve = { version = "0.12.1", features = ["std", "pem"] }
|
2021-08-02 10:19:27 -04:00
|
|
|
num-traits = "0.2.14"
|
2022-03-22 09:19:53 -04:00
|
|
|
once_cell = "1.10.0"
|
2022-06-20 07:23:57 -04:00
|
|
|
p256 = { version = "0.11.1", features = ["ecdh"] }
|
|
|
|
p384 = "0.11.1"
|
2021-07-09 11:15:50 -04:00
|
|
|
rand = "0.8.4"
|
2021-07-06 08:16:04 -04:00
|
|
|
ring = { version = "0.16.20", features = ["std"] }
|
2022-06-20 07:23:57 -04:00
|
|
|
rsa = { version = "0.7.0-pre", default-features = false, features = ["std"] }
|
|
|
|
sec1 = "0.3.0"
|
2021-09-02 17:38:44 -04:00
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
2021-12-13 12:45:08 -05:00
|
|
|
serde_bytes = "0.11"
|
2022-06-20 07:23:57 -04:00
|
|
|
sha-1 = "0.10.0"
|
|
|
|
sha2 = "0.10.2"
|
|
|
|
spki = "0.6.0"
|
2022-04-02 13:54:40 -04:00
|
|
|
tokio = { version = "1.17", features = ["full"] }
|
2022-05-05 06:41:59 -04:00
|
|
|
uuid = { version = "1.0.0", features = ["v4"] }
|