mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
fb31eaa9ca
This commit updates Deno to use `reqwest` at 0.12.4 and `rustls` at 0.22. Other related crates were updated as well to match versions accepted by `reqwest` and `rustls`. Note: we are not using the latest available `rustls` yet, but this upgrade was non-trivial already, so a bump to 0.23 for `rustls` will be done in a separate commit. Closes #23370 --------- Signed-off-by: Ryan Dahl <ry@tinyclouds.org> Signed-off-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored-by: Ryan Dahl <ry@tinyclouds.org> Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
25 lines
570 B
TOML
25 lines
570 B
TOML
# Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_tls"
|
|
version = "0.143.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
description = "TLS for Deno"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
deno_core.workspace = true
|
|
deno_native_certs = "0.3.0"
|
|
rustls.workspace = true
|
|
rustls-pemfile.workspace = true
|
|
rustls-tokio-stream.workspace = true
|
|
rustls-webpki.workspace = true
|
|
serde.workspace = true
|
|
tokio.workspace = true
|
|
webpki-roots.workspace = true
|