From ca2a8e02a6d0275c03be450ba314a4e2ff6ba3fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Apr 2023 04:58:33 +0000 Subject: [PATCH] Bump attohttpc from 0.24.1 to 0.25.0 Bumps [attohttpc](https://github.com/sbstp/attohttpc) from 0.24.1 to 0.25.0. - [Release notes](https://github.com/sbstp/attohttpc/releases) - [Commits](https://github.com/sbstp/attohttpc/compare/v0.24.1...v0.25.0) --- updated-dependencies: - dependency-name: attohttpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 +++++++++++++-- acmed/Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0c7e16e..ebd7541 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6,7 +6,7 @@ version = 3 name = "acme_common" version = "0.21.0" dependencies = [ - "attohttpc", + "attohttpc 0.24.1", "base64", "daemonize", "env_logger", @@ -30,7 +30,7 @@ dependencies = [ "acme_common", "async-lock", "async-process", - "attohttpc", + "attohttpc 0.25.0", "bincode", "clap", "futures", @@ -170,6 +170,17 @@ name = "attohttpc" version = "0.24.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8d9a9bf8b79a749ee0b911b91b671cc2b6c670bdbc7e3dfd537576ddc94bb2a2" +dependencies = [ + "http", + "log", + "url", +] + +[[package]] +name = "attohttpc" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e57d6e7a84f33ff3316e97af3180fe7f86597a6a60161c0be70c0e45f382620" dependencies = [ "encoding_rs", "encoding_rs_io", diff --git a/acmed/Cargo.toml b/acmed/Cargo.toml index a6d097f..c4979d7 100644 --- a/acmed/Cargo.toml +++ b/acmed/Cargo.toml @@ -23,7 +23,7 @@ openssl_vendored = ["crypto_openssl", "acme_common/openssl_vendored", "attohttpc acme_common = { path = "../acme_common" } async-lock = "2.6" async-process = "1.6" -attohttpc = { version = "0.24", default-features = false, features = ["charsets", "json"] } +attohttpc = { version = "0.25", default-features = false, features = ["charsets", "json"] } bincode = "1.3" clap = { version = "4.0", features = ["string"] } futures = "0.3"