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-03-31 15:48:35 -04:00
|
|
|
version = "0.32.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-03-31 15:48:35 -04:00
|
|
|
deno_core = { version = "0.127.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"] }
|
|
|
|
rustls-native-certs = "0.6.1"
|
2022-03-14 23:12:59 -04:00
|
|
|
rustls-pemfile = "0.3"
|
2021-09-02 17:38:44 -04:00
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
2021-12-06 18:48:11 -05:00
|
|
|
webpki = "0.22"
|
|
|
|
webpki-roots = "0.22"
|