From a063d016b5e3ae7df2cf005f1e97d49669b49a54 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Oct 2021 13:59:02 +0200 Subject: [PATCH] build: bump attohttpc from 0.17.0 to 0.18.0 (#3155) Bumps [attohttpc](https://github.com/sbstp/attohttpc) from 0.17.0 to 0.18.0. - [Release notes](https://github.com/sbstp/attohttpc/releases) - [Commits](https://github.com/sbstp/attohttpc/compare/v0.17.0...v0.18.0) --- updated-dependencies: - dependency-name: attohttpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 22 ++++++++-------------- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 65c08388b..8a88728c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -68,9 +68,9 @@ dependencies = [ [[package]] name = "attohttpc" -version = "0.17.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a8bda305457262b339322106c776e3fd21df860018e566eb6a5b1aa4b6ae02d" +checksum = "e69e13a99a7e6e070bb114f7ff381e58c7ccc188630121fc4c2fe4bcf24cd072" dependencies = [ "http", "log", @@ -445,12 +445,6 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4bb454f0228b18c7f4c3b0ebbee346ed9c52e7443b0999cd543ff3571205701d" -[[package]] -name = "dtoa" -version = "0.4.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" - [[package]] name = "either" version = "1.6.1" @@ -1657,14 +1651,14 @@ dependencies = [ [[package]] name = "serde_urlencoded" -version = "0.6.1" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97" +checksum = "edfa57a7f8d9c1d260a549e7224100f6c43d43f9103e06dd8b4095a9b2b43ce9" dependencies = [ - "dtoa", + "form_urlencoded", "itoa", + "ryu", "serde", - "url", ] [[package]] @@ -2093,9 +2087,9 @@ dependencies = [ [[package]] name = "wildmatch" -version = "1.1.0" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f44b95f62d34113cf558c93511ac93027e03e9c29a60dd0fd70e6e025c7270a" +checksum = "d6c48bd20df7e4ced539c12f570f937c6b4884928a87fee70a479d72f031d4e0" [[package]] name = "winapi" diff --git a/Cargo.toml b/Cargo.toml index 247fc5053..5d4ce492d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -74,7 +74,7 @@ sha-1 = "0.9.8" process_control = { version = "3.1.0", features = ["crossbeam-channel"] } # Optional/http: -attohttpc = { version = "0.17.0", optional = true, default-features = false, features = ["tls", "form"] } +attohttpc = { version = "0.18.0", optional = true, default-features = false, features = ["tls", "form"] } native-tls = { version = "0.2.8", optional = true } shell-words = "1.0.0"