From ffa5502c1ebb95fa75491b2d3c1aba59182164c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Jan 2023 06:54:44 +0000 Subject: [PATCH] Bump ureq from 1.5.2 to 2.6.2 Bumps [ureq](https://github.com/algesten/ureq) from 1.5.2 to 2.6.2. - [Release notes](https://github.com/algesten/ureq/releases) - [Changelog](https://github.com/algesten/ureq/blob/main/CHANGELOG.md) - [Commits](https://github.com/algesten/ureq/commits/2.6.2) --- updated-dependencies: - dependency-name: ureq dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 21 ++------------------- secure/json-rpc/Cargo.toml | 2 +- secure/push-metrics/Cargo.toml | 2 +- secure/storage/github/Cargo.toml | 2 +- secure/storage/vault/Cargo.toml | 2 +- testsuite/diem-fuzzer/Cargo.toml | 2 +- 6 files changed, 7 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9363eb707d3c..aa6e7c96f804 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -662,12 +662,6 @@ dependencies = [ "winapi 0.3.9", ] -[[package]] -name = "chunked_transfer" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7477065d45a8fe57167bf3cf8bcd3729b54cfcb81cca49bda2d038ea89ae82ca" - [[package]] name = "cipher" version = "0.2.5" @@ -5085,15 +5079,6 @@ dependencies = [ "prost", ] -[[package]] -name = "qstring" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d464fae65fff2680baf48019211ce37aaec0c78e9264c84a3e484717f965104e" -dependencies = [ - "percent-encoding", -] - [[package]] name = "quick-error" version = "1.2.3" @@ -7181,16 +7166,14 @@ dependencies = [ [[package]] name = "ureq" -version = "1.5.2" +version = "2.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a599426c7388ab189dfd0eeb84c8d879490abc73e3e62a0b6a40e286f6427ab7" +checksum = "338b31dd1314f68f3aabf3ed57ab922df95ffcd902476ca7ba3c4ce7b908c46d" dependencies = [ "base64 0.13.0", - "chunked_transfer", "log", "native-tls", "once_cell", - "qstring", "serde", "serde_json", "url", diff --git a/secure/json-rpc/Cargo.toml b/secure/json-rpc/Cargo.toml index 72b6aea67235..1b1fc209d1be 100644 --- a/secure/json-rpc/Cargo.toml +++ b/secure/json-rpc/Cargo.toml @@ -15,7 +15,7 @@ proptest = { version = "0.10.1", optional = true } serde = { version = "1.0.117", features = ["derive"], default-features = false } serde_json = "1.0.60" thiserror = "1.0.22" -ureq = { version = "1.5.2", features = ["json", "native-tls"], default-features = false } +ureq = { version = "2.6.2", features = ["json", "native-tls"], default-features = false } lcs = { version = "0.1.0", package = "libra-canonical-serialization" } diem-crypto = { path = "../../crypto/crypto", version = "0.1.0" } diff --git a/secure/push-metrics/Cargo.toml b/secure/push-metrics/Cargo.toml index a540e11834c7..fb263da8f809 100644 --- a/secure/push-metrics/Cargo.toml +++ b/secure/push-metrics/Cargo.toml @@ -10,7 +10,7 @@ publish = false edition = "2018" [dependencies] -ureq = { version = "1.5.2", features = ["json", "native-tls"], default-features = false } +ureq = { version = "2.6.2", features = ["json", "native-tls"], default-features = false } diem-logger = { path = "../../common/logger", version = "0.1.0" } diem-metrics-core = { path = "../../common/metrics-core", version = "0.1.0" } diem-workspace-hack = { path = "../../common/workspace-hack", version = "0.1.0" } diff --git a/secure/storage/github/Cargo.toml b/secure/storage/github/Cargo.toml index 82281f9f252a..958da136579d 100644 --- a/secure/storage/github/Cargo.toml +++ b/secure/storage/github/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" serde = { version = "1.0.117", features = ["derive"], default-features = false } serde_json = "1.0.60" thiserror = "1.0.22" -ureq = { version = "1.5.2", features = ["json", "native-tls"], default-features = false } +ureq = { version = "2.6.2", features = ["json", "native-tls"], default-features = false } diem-workspace-hack = { path = "../../../common/workspace-hack", version = "0.1.0" } diff --git a/secure/storage/vault/Cargo.toml b/secure/storage/vault/Cargo.toml index 6d38d899ed91..d66754d7e169 100644 --- a/secure/storage/vault/Cargo.toml +++ b/secure/storage/vault/Cargo.toml @@ -18,7 +18,7 @@ native-tls = "0.2.6" serde = { version = "1.0.117", features = ["derive"], default-features = false } serde_json = "1.0.60" thiserror = "1.0.22" -ureq = { version = "1.5.2", features = ["json", "native-tls"], default-features = false } +ureq = { version = "2.6.2", features = ["json", "native-tls"], default-features = false } diem-crypto = { path = "../../../crypto/crypto", version = "0.1.0" } diem-proptest-helpers = { path = "../../../common/proptest-helpers", version = "0.1.0", optional = true } diff --git a/testsuite/diem-fuzzer/Cargo.toml b/testsuite/diem-fuzzer/Cargo.toml index 6b775a6a0b21..f33d3a234793 100644 --- a/testsuite/diem-fuzzer/Cargo.toml +++ b/testsuite/diem-fuzzer/Cargo.toml @@ -21,7 +21,7 @@ serde_json = "1.0.60" sha-1 = { version = "0.9.2", default-features = false } structopt = "0.3.21" rand = "0.7.3" -ureq = { version = "1.5.2", features = ["json", "native-tls"], default-features = false } +ureq = { version = "2.6.2", features = ["json", "native-tls"], default-features = false } lcs = { version = "0.1.0", package = "libra-canonical-serialization" } diem-proptest-helpers = { path = "../../common/proptest-helpers", version = "0.1.0" }