From 23939bd53fc399b3253d0f9e49a7e557ff818181 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Feb 2025 10:48:08 +0000 Subject: [PATCH] build(deps): bump ureq from 2.12.1 to 3.0.3 (#2275) Bumps [ureq](https://github.com/algesten/ureq) from 2.12.1 to 3.0.3. - [Changelog](https://github.com/algesten/ureq/blob/main/CHANGELOG.md) - [Commits](https://github.com/algesten/ureq/compare/2.12.1...3.0.3) --- updated-dependencies: - dependency-name: ureq dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 23 +++++++++++++++++++---- zilliqa/Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5932055f9..a92736a75 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9508,20 +9508,35 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" [[package]] name = "ureq" -version = "2.12.1" +version = "3.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d" +checksum = "217751151c53226090391713e533d9a5e904ba2570dabaaace29032687589c3e" dependencies = [ "base64 0.22.1", + "cc", "flate2", "log", - "once_cell", + "percent-encoding", "rustls 0.23.22", + "rustls-pemfile 2.2.0", "rustls-pki-types", - "url", + "ureq-proto", + "utf-8", "webpki-roots 0.26.7", ] +[[package]] +name = "ureq-proto" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c51fe73e1d8c4e06bb2698286f7e7453c6fc90528d6d2e7fc36bb4e87fe09b1" +dependencies = [ + "base64 0.22.1", + "http 1.2.0", + "httparse", + "log", +] + [[package]] name = "url" version = "2.5.4" diff --git a/zilliqa/Cargo.toml b/zilliqa/Cargo.toml index 4fba629dc..c9d70f4f6 100644 --- a/zilliqa/Cargo.toml +++ b/zilliqa/Cargo.toml @@ -97,7 +97,7 @@ fs_extra = "1.3.0" indicatif = "0.17.11" pprof = { version = "0.14.0", default-features = false, features = ["criterion", "flamegraph"] } primitive-types = { version = "0.12.2" } -ureq = "2.12.1" +ureq = "3.0.3" zilliqa = { path = ".", default-features = false, features = ["fake_response_channel", "fake_time"] } zilliqa-macros = { path = "../zilliqa-macros" }