From 3b262be1a4138c4283781beddb45eb64aacc7101 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 08:15:58 +0000 Subject: [PATCH] chore: Bump reqwest from 0.11.24 to 0.11.25 (#258) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps reqwest from 0.11.24 to 0.11.25. Release notes Sourced from reqwest's releases. v0.11.25 What's Changed Fix Certificate::from_pem_bundle() parsing. Fix Apple linker errors from detecting system proxies. New Contributors @​cdata made their first contribution in seanmonstar/reqwest#2130 @​yottalogical made their first contribution in seanmonstar/reqwest#2154 Full Changelog: seanmonstar/reqwest@v0.11.24...v0.11.25 Changelog Sourced from reqwest's changelog. v0.11.25 Fix Certificate::from_pem_bundle() parsing. Fix Apple linker errors from detecting system proxies. Commits 7e77674 v0.11.25 ba550f0 docs: change no-default-features to default-features (#2154) 68547a0 chore: blocking doesn't need multi-threaded (#2146) e639bdc fix: Patch system-configuration version (#2130) ba9e588 Fix Certificate::from_pem_bundle (#2129) 2d6eb24 chore: Inline format args (#2024) 05c3982 chore: Use edition 2021 panics (#2122) 05996d8 chore: edition 2021 (#2023) See full diff in compare view Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase. Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: @dependabot rebase will rebase this PR @dependabot recreate will recreate this PR, overwriting any edits that have been made to it @dependabot merge will merge this PR after your CI passes on it @dependabot squash and merge will squash and merge this PR after your CI passes on it @dependabot cancel merge will cancel a previously requested merge and block automerging @dependabot reopen will reopen this PR if it is closed @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually @dependabot show ignore conditions will show all of the ignore conditions of the specified dependency @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) --- Cargo.lock | 14 +++++++------- libfatigue/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5734f39..ecc8b55 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1600,9 +1600,9 @@ dependencies = [ [[package]] name = "reqwest" -version = "0.11.24" +version = "0.11.25" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6920094eb85afde5e4a138be3f2de8bbdf28000f0029e72c45025a56b042251" +checksum = "0eea5a9eb898d3783f17c6407670e3592fd174cb81a10e51d4c37f49450b9946" dependencies = [ "base64", "bytes", @@ -2042,20 +2042,20 @@ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" [[package]] name = "system-configuration" -version = "0.5.1" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" +checksum = "658bc6ee10a9b4fcf576e9b0819d95ec16f4d2c02d39fd83ac1c8789785c4a42" dependencies = [ - "bitflags 1.3.2", + "bitflags 2.4.1", "core-foundation", "system-configuration-sys", ] [[package]] name = "system-configuration-sys" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" +checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4" dependencies = [ "core-foundation-sys", "libc", diff --git a/libfatigue/Cargo.toml b/libfatigue/Cargo.toml index 6007a3e..60eb938 100644 --- a/libfatigue/Cargo.toml +++ b/libfatigue/Cargo.toml @@ -20,7 +20,7 @@ humantime-serde = "1.1.1" liquid = "0.26.4" num_cpus = "1.16.0" petname = "1.1.2" -reqwest = { version = "0.11.24", features = ["json"] } +reqwest = { version = "0.11.25", features = ["json"] } serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.114" serde_yaml = "0.9.32"