diff options
| author | Bartek Iwańczuk <biwanczuk@gmail.com> | 2024-06-13 21:41:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-13 22:41:26 +0200 |
| commit | fb31eaa9ca59f6daaee0210d5cd206185c7041b9 (patch) | |
| tree | 0c4ebc81ed7b44b683f31281accc47d451d09718 /Cargo.toml | |
| parent | 518e4d3b3a93838e0f2dbcc4d3b79f8f395db563 (diff) | |
chore: upgrade to reqwest 0.12.4 and rustls 0.22 (#24056)
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>
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/Cargo.toml b/Cargo.toml index 37b90516d..1f188e5bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,10 +55,10 @@ deno_terminal = "0.1.1" napi_sym = { version = "0.86.0", path = "./cli/napi/sym" } test_util = { package = "test_server", path = "./tests/util/server" } -denokv_proto = "0.7.0" -denokv_remote = "0.7.0" +denokv_proto = "0.8.1" +denokv_remote = "0.8.1" # denokv_sqlite brings in bundled sqlite if we don't disable the default features -denokv_sqlite = { default-features = false, version = "0.7.0" } +denokv_sqlite = { default-features = false, version = "0.8.1" } # exts deno_broadcast_channel = { version = "0.150.0", path = "./ext/broadcast_channel" } @@ -117,8 +117,8 @@ http = "1.0" http-body-util = "0.1" http_v02 = { package = "http", version = "0.2.9" } httparse = "1.8.0" -hyper = { version = "=1.1.0", features = ["full"] } -hyper-util = { version = "=0.1.2", features = ["tokio", "server", "server-auto"] } +hyper = { version = "=1.3.1", features = ["full"] } +hyper-util = { version = "=0.1.5", features = ["tokio", "server", "server-auto"] } hyper_v014 = { package = "hyper", version = "0.14.26", features = ["runtime", "http1"] } indexmap = { version = "2", features = ["serde"] } jsonc-parser = { version = "=0.23.0", features = ["serde"] } @@ -145,14 +145,13 @@ prost = "0.11" prost-build = "0.11" rand = "=0.8.5" regex = "^1.7.0" -reqwest = { version = "=0.11.20", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli", "socks", "json"] } # pinned because of https://github.com/seanmonstar/reqwest/pull/1955 +reqwest = { version = "=0.12.4", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli", "socks", "json", "http2"] } # pinned because of https://github.com/seanmonstar/reqwest/pull/1955 ring = "^0.17.0" rusqlite = { version = "=0.29.0", features = ["unlock_notify", "bundled"] } -# pinned because it was causing issues on cargo publish -rustls = "=0.21.11" -rustls-pemfile = "1.0.0" -rustls-tokio-stream = "=0.2.24" -rustls-webpki = "0.101.4" +rustls = "0.22.4" +rustls-pemfile = "2" +rustls-tokio-stream = "=0.2.23" +rustls-webpki = "0.102" rustyline = "=13.0.0" saffron = "=0.1.0" scopeguard = "1.2.0" @@ -178,7 +177,7 @@ twox-hash = "=1.6.3" # Upgrading past 2.4.1 may cause WPT failures url = { version = "< 2.5.0", features = ["serde", "expose_internals"] } uuid = { version = "1.3.0", features = ["v4"] } -webpki-roots = "0.25.2" +webpki-roots = "0.26" zeromq = { version = "=0.3.4", default-features = false, features = ["tcp-transport", "tokio-runtime"] } zstd = "=0.12.4" |
