2023-01-02 16:00:42 -05:00
|
|
|
# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
2022-08-09 21:06:01 +02:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_node"
|
2023-04-01 09:10:13 +09:00
|
|
|
version = "0.33.0"
|
2022-11-22 21:07:35 +01:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2022-08-09 21:06:01 +02:00
|
|
|
readme = "README.md"
|
2022-11-22 21:07:35 +01:00
|
|
|
repository.workspace = true
|
2022-08-09 21:06:01 +02:00
|
|
|
description = "Node compatibility for Deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-03-14 15:59:23 +09:00
|
|
|
aes.workspace = true
|
|
|
|
cbc.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
deno_core.workspace = true
|
2023-02-14 17:38:45 +01:00
|
|
|
digest = { version = "0.10.5", features = ["core-api", "std"] }
|
2023-03-25 15:42:07 +09:00
|
|
|
ecb.workspace = true
|
2023-03-22 12:13:24 +08:00
|
|
|
hex.workspace = true
|
2023-02-20 18:47:42 +01:00
|
|
|
idna = "0.3.0"
|
2023-02-22 22:45:35 -05:00
|
|
|
indexmap.workspace = true
|
2023-03-27 21:33:07 +05:30
|
|
|
libz-sys = { version = "1.1.8", features = ["static"] }
|
2023-02-14 17:38:45 +01:00
|
|
|
md-5 = "0.10.5"
|
|
|
|
md4 = "0.10.2"
|
2023-03-28 16:26:38 +05:30
|
|
|
num-bigint.workspace = true
|
|
|
|
num-integer = "0.1.45"
|
|
|
|
num-traits = "0.2.14"
|
2022-11-22 21:07:35 +01:00
|
|
|
once_cell.workspace = true
|
2022-08-30 14:09:22 -04:00
|
|
|
path-clean = "=0.1.0"
|
2023-03-28 15:10:56 +05:30
|
|
|
pbkdf2 = "0.12.1"
|
2023-02-20 22:22:28 +05:30
|
|
|
rand.workspace = true
|
2022-11-22 21:07:35 +01:00
|
|
|
regex.workspace = true
|
2023-02-14 17:38:45 +01:00
|
|
|
ripemd = "0.1.3"
|
2023-02-20 22:22:28 +05:30
|
|
|
rsa.workspace = true
|
2022-12-07 17:32:24 -05:00
|
|
|
serde = "1.0.149"
|
2023-02-14 17:38:45 +01:00
|
|
|
sha-1 = "0.10.0"
|
2023-04-01 09:10:13 +09:00
|
|
|
sha2.workspace = true
|
2023-02-14 17:38:45 +01:00
|
|
|
sha3 = "0.10.5"
|
2023-03-28 21:46:48 +09:00
|
|
|
signature.workspace = true
|
2023-03-28 15:10:56 +05:30
|
|
|
tokio.workspace = true
|
2023-02-14 17:38:45 +01:00
|
|
|
typenum = "1.15.0"
|