2021-01-12 02:13:41 +09:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-11-14 02:31:57 +05:30
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_crypto"
|
2021-12-04 01:26:54 +01:00
|
|
|
version = "0.42.0"
|
2020-11-14 02:31:57 +05:30
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 15:03:37 +01:00
|
|
|
edition = "2021"
|
2020-11-14 02:31:57 +05:30
|
|
|
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-14 02:31:57 +05:30
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-10-11 20:07:51 +05:30
|
|
|
aes = "0.7.5"
|
2021-12-10 22:23:19 +01:00
|
|
|
base64 = "0.13.0"
|
2021-10-11 20:07:51 +05:30
|
|
|
block-modes = "0.8.1"
|
2021-12-04 01:26:54 +01:00
|
|
|
deno_core = { version = "0.110.0", path = "../../core" }
|
|
|
|
deno_web = { version = "0.59.0", path = "../web" }
|
2021-10-11 20:30:48 +05:30
|
|
|
elliptic-curve = "0.10.6"
|
2021-08-02 10:19:27 -04:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
num-traits = "0.2.14"
|
2021-10-08 20:59:36 +05:30
|
|
|
p256 = { version = "0.9.0", features = ["ecdh"] }
|
|
|
|
p384 = "0.8.0"
|
2021-07-09 17:15:50 +02:00
|
|
|
rand = "0.8.4"
|
2021-07-06 17:46:04 +05:30
|
|
|
ring = { version = "0.16.20", features = ["std"] }
|
2021-08-06 13:40:50 +05:30
|
|
|
rsa = { version = "0.5.0", default-features = false, features = ["std"] }
|
2021-09-02 23:38:44 +02:00
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
2021-08-06 13:40:50 +05:30
|
|
|
sha-1 = "0.9.7"
|
2021-07-06 17:46:04 +05:30
|
|
|
sha2 = "0.9.5"
|
2021-10-06 14:48:12 +05:30
|
|
|
spki = "0.4.1"
|
2021-09-02 23:38:44 +02:00
|
|
|
tokio = { version = "1.10.1", features = ["full"] }
|
2021-06-05 14:46:24 +02:00
|
|
|
uuid = { version = "0.8.2", features = ["v4"] }
|