2024-01-01 19:58:21 +00:00
|
|
|
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2021-08-07 12:49:38 +00:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_tls"
|
2024-04-01 08:05:46 +00:00
|
|
|
version = "0.131.0"
|
2022-11-22 20:07:35 +00:00
|
|
|
authors.workspace = true
|
|
|
|
edition.workspace = true
|
|
|
|
license.workspace = true
|
2021-08-07 12:49:38 +00:00
|
|
|
readme = "README.md"
|
2022-11-22 20:07:35 +00:00
|
|
|
repository.workspace = true
|
2021-08-07 12:49:38 +00:00
|
|
|
description = "TLS for Deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-22 20:07:35 +00:00
|
|
|
deno_core.workspace = true
|
2023-11-05 08:14:58 +00:00
|
|
|
deno_native_certs = "0.2.0"
|
2022-11-22 20:07:35 +00:00
|
|
|
once_cell.workspace = true
|
|
|
|
rustls = { workspace = true, features = ["dangerous_configuration"] }
|
|
|
|
rustls-pemfile.workspace = true
|
2024-02-09 20:33:05 +00:00
|
|
|
rustls-tokio-stream.workspace = true
|
2023-08-25 21:40:25 +00:00
|
|
|
rustls-webpki.workspace = true
|
2022-11-22 20:07:35 +00:00
|
|
|
serde.workspace = true
|
2023-08-25 21:40:25 +00:00
|
|
|
webpki-roots.workspace = true
|