From 046378de46a3a4cc80e33beb825ef2975a5b63cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 00:49:34 +0000 Subject: [PATCH] Bump ureq from 2.9.7 to 2.10.0 Bumps [ureq](https://github.com/algesten/ureq) from 2.9.7 to 2.10.0. - [Changelog](https://github.com/algesten/ureq/blob/main/CHANGELOG.md) - [Commits](https://github.com/algesten/ureq/compare/2.9.7...2.10.0) --- updated-dependencies: - dependency-name: ureq dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 18 +++++++++--------- Cargo.toml | 2 +- crates/gosub_config/Cargo.toml | 2 +- crates/gosub_html5/Cargo.toml | 2 +- crates/gosub_net/Cargo.toml | 2 +- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e3f966b57..bfad2679a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3583,11 +3583,12 @@ dependencies = [ [[package]] name = "rustls" -version = "0.22.4" +version = "0.23.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" +checksum = "4828ea528154ae444e5a642dbb7d5623354030dc9822b83fd9bb79683c7399d0" dependencies = [ "log", + "once_cell", "ring", "rustls-pki-types", "rustls-webpki", @@ -3597,15 +3598,15 @@ dependencies = [ [[package]] name = "rustls-pki-types" -version = "1.3.1" +version = "1.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ede67b28608b4c60685c7d54122d4400d90f62b40caee7700e700380a390fa8" +checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d" [[package]] name = "rustls-webpki" -version = "0.102.2" +version = "0.102.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610" +checksum = "f9a6fccd794a42c2c105b513a2f62bc3fd8f3ba57a4593677ceb0bd035164d78" dependencies = [ "ring", "rustls-pki-types", @@ -4394,9 +4395,9 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "ureq" -version = "2.9.7" +version = "2.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d11a831e3c0b56e438a28308e7c810799e3c118417f342d30ecec080105395cd" +checksum = "72139d247e5f97a3eff96229a7ae85ead5328a39efe76f8bf5a06313d505b6ea" dependencies = [ "base64", "flate2", @@ -4404,7 +4405,6 @@ dependencies = [ "once_cell", "rustls", "rustls-pki-types", - "rustls-webpki", "url", "webpki-roots", ] diff --git a/Cargo.toml b/Cargo.toml index 7b52d3178..2b52bf9e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -71,7 +71,7 @@ getrandom = { version = "0.2.15", features = ["js"] } gosub_v8 = { path = "./crates/gosub_v8", features = [] } gosub_webexecutor = { path = "./crates/gosub_webexecutor", features = [] } gosub_net = { path = "./crates/gosub_net", features = [] } -ureq = "2.9.7" +ureq = "2.10.0" futures = "0.3.30" [profile.release] diff --git a/crates/gosub_config/Cargo.toml b/crates/gosub_config/Cargo.toml index 3131dcec4..2c57bc45e 100644 --- a/crates/gosub_config/Cargo.toml +++ b/crates/gosub_config/Cargo.toml @@ -19,4 +19,4 @@ anyhow = "1.0.86" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] sqlite = "0.36.0" -ureq = "2.9.7" \ No newline at end of file +ureq = "2.10.0" \ No newline at end of file diff --git a/crates/gosub_html5/Cargo.toml b/crates/gosub_html5/Cargo.toml index fa2e8b3ab..bbc36c136 100644 --- a/crates/gosub_html5/Cargo.toml +++ b/crates/gosub_html5/Cargo.toml @@ -18,7 +18,7 @@ log = { version = "0.4.22", features = [] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -ureq = "2.9.7" +ureq = "2.10.0" [dev-dependencies] gosub_testing = { path = "../gosub_testing" } diff --git a/crates/gosub_net/Cargo.toml b/crates/gosub_net/Cargo.toml index 6aca44e95..f411ac0f9 100644 --- a/crates/gosub_net/Cargo.toml +++ b/crates/gosub_net/Cargo.toml @@ -10,7 +10,7 @@ gosub_shared = { path = "../gosub_shared", features = [] } gosub_config = { path = "../gosub_config", features = [] } derive_more = "0.99" thiserror = "1.0.61" -ureq = "2.9.7" +ureq = "2.10.0" anyhow = "1.0.86" log = "0.4.22" domain-lookup-tree = "0.1"