2022-01-07 22:09:52 -05:00
|
|
|
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
2021-08-07 08:49:38 -04:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_tls"
|
2022-05-12 12:43:00 -04:00
|
|
|
version = "0.39.0"
|
2021-08-07 08:49:38 -04:00
|
|
|
authors = ["the Deno authors"]
|
2021-11-02 10:03:37 -04:00
|
|
|
edition = "2021"
|
2021-08-07 08:49:38 -04:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
|
|
|
description = "TLS for Deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-05-12 12:43:00 -04:00
|
|
|
deno_core = { version = "0.134.0", path = "../../core" }
|
2022-03-22 09:19:53 -04:00
|
|
|
once_cell = "1.10.0"
|
2021-12-06 18:48:11 -05:00
|
|
|
rustls = { version = "0.20", features = ["dangerous_configuration"] }
|
2022-05-05 06:41:59 -04:00
|
|
|
rustls-native-certs = "0.6.2"
|
|
|
|
rustls-pemfile = "1.0.0"
|
|
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
2021-12-06 18:48:11 -05:00
|
|
|
webpki = "0.22"
|
|
|
|
webpki-roots = "0.22"
|