2023-01-02 16:00:42 -05:00
|
|
|
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2022-08-09 15:06:01 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_node"
|
2023-04-18 16:20:49 -04:00
|
|
|
version = "0.36.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-08-09 15:06:01 -04:00
|
|
|
readme = "README.md"
|
2022-11-22 15:07:35 -05:00
|
|
|
repository.workspace = true
|
2022-08-09 15:06:01 -04:00
|
|
|
description = "Node compatibility for Deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-03-14 02:59:23 -04:00
|
|
|
aes.workspace = true
|
|
|
|
cbc.workspace = true
|
2023-04-07 13:24:16 -04:00
|
|
|
data-encoding = "2.3.3"
|
2022-11-22 15:07:35 -05:00
|
|
|
deno_core.workspace = true
|
2023-02-14 11:38:45 -05:00
|
|
|
digest = { version = "0.10.5", features = ["core-api", "std"] }
|
2023-04-19 12:57:34 -04:00
|
|
|
dsa = "0.6.1"
|
2023-03-25 02:42:07 -04:00
|
|
|
ecb.workspace = true
|
2023-03-22 00:13:24 -04:00
|
|
|
hex.workspace = true
|
2023-04-06 12:56:56 -04:00
|
|
|
hkdf.workspace = true
|
2023-02-20 12:47:42 -05:00
|
|
|
idna = "0.3.0"
|
2023-02-22 22:45:35 -05:00
|
|
|
indexmap.workspace = true
|
2023-04-12 21:08:01 -04:00
|
|
|
lazy-regex.workspace = true
|
2023-03-27 12:03:07 -04:00
|
|
|
libz-sys = { version = "1.1.8", features = ["static"] }
|
2023-02-14 11:38:45 -05:00
|
|
|
md-5 = "0.10.5"
|
|
|
|
md4 = "0.10.2"
|
2023-03-28 06:56:38 -04:00
|
|
|
num-bigint.workspace = true
|
2023-04-19 12:57:34 -04:00
|
|
|
num-bigint-dig = "0.8.2"
|
2023-03-28 06:56:38 -04:00
|
|
|
num-integer = "0.1.45"
|
|
|
|
num-traits = "0.2.14"
|
2022-11-22 15:07:35 -05:00
|
|
|
once_cell.workspace = true
|
2022-08-30 14:09:22 -04:00
|
|
|
path-clean = "=0.1.0"
|
2023-03-28 05:40:56 -04:00
|
|
|
pbkdf2 = "0.12.1"
|
2023-02-20 11:52:28 -05:00
|
|
|
rand.workspace = true
|
2022-11-22 15:07:35 -05:00
|
|
|
regex.workspace = true
|
2023-04-19 12:57:34 -04:00
|
|
|
ring.workspace = true
|
2023-02-14 11:38:45 -05:00
|
|
|
ripemd = "0.1.3"
|
2023-02-20 11:52:28 -05:00
|
|
|
rsa.workspace = true
|
2023-04-18 08:29:10 -04:00
|
|
|
scrypt = "0.11.0"
|
2022-12-07 17:32:24 -05:00
|
|
|
serde = "1.0.149"
|
2023-02-14 11:38:45 -05:00
|
|
|
sha-1 = "0.10.0"
|
2023-03-31 20:10:13 -04:00
|
|
|
sha2.workspace = true
|
2023-02-14 11:38:45 -05:00
|
|
|
sha3 = "0.10.5"
|
2023-03-28 08:46:48 -04:00
|
|
|
signature.workspace = true
|
2023-03-28 05:40:56 -04:00
|
|
|
tokio.workspace = true
|
2023-02-14 11:38:45 -05:00
|
|
|
typenum = "1.15.0"
|
2023-04-19 12:57:34 -04:00
|
|
|
# https://github.com/dalek-cryptography/x25519-dalek/pull/89
|
|
|
|
x25519-dalek = "2.0.0-pre.1"
|
2023-04-07 13:24:16 -04:00
|
|
|
x509-parser = "0.15.0"
|