From 612ec43df578754215ee7bfb67ebad2bae29c113 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 08:09:36 +0000 Subject: [PATCH] chore: Bump serde_yaml from 0.9.30 to 0.9.31 (#246) Bumps serde_yaml from 0.9.30 to 0.9.31. Release notes Sourced from serde_yaml's releases. 0.9.31 Add swap_remove and shift_remove methods on Mapping (#408) Commits 2a77483 Release 0.9.31 d8d1a83 Merge pull request #408 from dtolnay/remove f8a99a4 Add swap_remove and shift_remove methods on Mapping 8b26413 Work around dead_code warning in tests 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 | 24 ++++++++++++------------ libfatigue/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3cebf38..76decac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -731,9 +731,9 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" [[package]] name = "hashbrown" -version = "0.14.0" +version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" +checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" [[package]] name = "hdrhistogram" @@ -879,12 +879,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "2.0.0" +version = "2.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" +checksum = "433de089bd45971eecf4668ee0ee8f4cec17db4f8bd8f7bc3197a6ce37aa7d9b" dependencies = [ "equivalent", - "hashbrown 0.14.0", + "hashbrown 0.14.3", "serde", ] @@ -1650,7 +1650,7 @@ dependencies = [ "either", "figment", "futures", - "indexmap 2.0.0", + "indexmap 2.2.1", "log", "memchr", "multer", @@ -1682,7 +1682,7 @@ checksum = "a2238066abf75f21be6cd7dc1a09d5414a671f4246e384e49fe3f8a4936bd04c" dependencies = [ "devise", "glob", - "indexmap 2.0.0", + "indexmap 2.2.1", "proc-macro2", "quote", "rocket_http", @@ -1702,7 +1702,7 @@ dependencies = [ "futures", "http", "hyper", - "indexmap 2.0.0", + "indexmap 2.2.1", "log", "memchr", "pear", @@ -1848,11 +1848,11 @@ dependencies = [ [[package]] name = "serde_yaml" -version = "0.9.30" +version = "0.9.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1bf28c79a99f70ee1f1d83d10c875d2e70618417fda01ad1785e027579d9d38" +checksum = "adf8a49373e98a4c5f0ceb5d05aa7c648d75f63774981ed95b7c7443bbd50c6e" dependencies = [ - "indexmap 2.0.0", + "indexmap 2.2.1", "itoa 1.0.6", "ryu", "serde", @@ -2275,7 +2275,7 @@ version = "0.20.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" dependencies = [ - "indexmap 2.0.0", + "indexmap 2.2.1", "serde", "serde_spanned", "toml_datetime", diff --git a/libfatigue/Cargo.toml b/libfatigue/Cargo.toml index 1b06a5b..0e9fdd3 100644 --- a/libfatigue/Cargo.toml +++ b/libfatigue/Cargo.toml @@ -23,7 +23,7 @@ petname = "1.1.2" reqwest = { version = "0.11.23", features = ["json"] } serde = { version = "1.0.195", features = ["derive"] } serde_json = "1.0.111" -serde_yaml = "0.9.30" +serde_yaml = "0.9.31" thiserror = "1.0.56" tokio = { version = "1.35.1", features = ["full"] } url = "2.5.0"