2021-08-07 08:49:38 -04:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_tls"
|
2021-11-24 18:56:18 -05:00
|
|
|
version = "0.14.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-11-24 18:56:18 -05:00
|
|
|
deno_core = { version = "0.109.0", path = "../../core" }
|
2021-08-07 08:49:38 -04:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
reqwest = { version = "0.11.4", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
|
2021-08-09 10:53:21 -04:00
|
|
|
rustls = { version = "0.19.1", features = ["dangerous_configuration"] }
|
2021-08-07 08:49:38 -04:00
|
|
|
rustls-native-certs = "0.5.0"
|
2021-09-02 17:38:44 -04:00
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
2021-08-07 08:49:38 -04:00
|
|
|
webpki = "0.21.4"
|
|
|
|
webpki-roots = "0.21.1"
|