mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
refactor: deno_tls does not depend on reqwest (#12961)
This commit is contained in:
parent
084caffc08
commit
14f4102ece
3 changed files with 0 additions and 3 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -954,7 +954,6 @@ version = "0.14.0"
|
|||
dependencies = [
|
||||
"deno_core",
|
||||
"lazy_static",
|
||||
"reqwest",
|
||||
"rustls",
|
||||
"rustls-native-certs",
|
||||
"serde",
|
||||
|
|
|
@ -16,7 +16,6 @@ path = "lib.rs"
|
|||
[dependencies]
|
||||
deno_core = { version = "0.109.0", path = "../../core" }
|
||||
lazy_static = "1.4.0"
|
||||
reqwest = { version = "0.11.4", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
|
||||
rustls = { version = "0.19.1", features = ["dangerous_configuration"] }
|
||||
rustls-native-certs = "0.5.0"
|
||||
serde = { version = "1.0.129", features = ["derive"] }
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||
|
||||
pub use reqwest;
|
||||
pub use rustls;
|
||||
pub use rustls_native_certs;
|
||||
pub use webpki;
|
||||
|
|
Loading…
Reference in a new issue