2021-08-07 08:49:38 -04:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_tls"
|
2021-12-16 12:51:23 -05:00
|
|
|
version = "0.16.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]
|
2021-12-16 12:51:23 -05:00
|
|
|
deno_core = { version = "0.111.0", path = "../../core" }
|
2021-08-07 08:49:38 -04:00
|
|
|
lazy_static = "1.4.0"
|
2021-12-06 18:48:11 -05:00
|
|
|
rustls = { version = "0.20", features = ["dangerous_configuration"] }
|
|
|
|
rustls-native-certs = "0.6.1"
|
|
|
|
rustls-pemfile = "0.2.1"
|
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"
|