From 320fd9edd47db7324d67ad6ac1db7e9f1d1885ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 08:22:48 +0000 Subject: [PATCH] chore: Bump serde_json from 1.0.117 to 1.0.119 (#302) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps serde_json from 1.0.117 to 1.0.119. Release notes Sourced from serde_json's releases. v1.0.119 Add serde_json::Map::shift_insert (#1149, thanks @​joshka) v1.0.118 Implement Hash for serde_json::Value (#1127, thanks @​edwardycl) Commits b48b9a3 Release 1.0.119 8878cd7 Make shift_insert available for inlining like other Map methods 352b7ab Document the cfg required for Map::shift_insert to exist c17e63f Merge pull request #1149 from joshka/master 309ef6b Add Map::shift_insert() a9e089a Merge pull request #1146 from haouvw/master a83fe96 chore: remove repeat words c4f24f3 Release 1.0.118 51d94eb Combine Map's Hash into one impl 5e7bedc Touch up PR 1127 Additional commits viewable 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 | 4 ++-- examples/test-api/Cargo.toml | 2 +- fatigue/Cargo.toml | 2 +- libfatigue/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bd16c5c..e081a54 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1977,9 +1977,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.117" +version = "1.0.119" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" +checksum = "e8eddb61f0697cc3989c5d64b452f5488e2b8a60fd7d5076a3045076ffef8cb0" dependencies = [ "itoa 1.0.6", "ryu", diff --git a/examples/test-api/Cargo.toml b/examples/test-api/Cargo.toml index 48f28e6..1a584d6 100644 --- a/examples/test-api/Cargo.toml +++ b/examples/test-api/Cargo.toml @@ -10,5 +10,5 @@ version = "0.2.15" rand = "0.8.5" rocket = {version = "0.5.1", features = ["json"]} serde = {version = "1.0.203", features = ["derive"]} -serde_json = "1.0.117" +serde_json = "1.0.119" uuid = {version = "1.9.1", features = ["v4"]} diff --git a/fatigue/Cargo.toml b/fatigue/Cargo.toml index 7d579ad..4081646 100644 --- a/fatigue/Cargo.toml +++ b/fatigue/Cargo.toml @@ -21,6 +21,6 @@ libfatigue = { path = "../libfatigue", version = "0.2.15" } num-format = "0.4.4" prettytable-rs = "0.10.0" serde = "1.0.203" -serde_json = "1.0.117" +serde_json = "1.0.119" thiserror = "1.0.61" tokio = { version = "1.38.0", features = ["full"] } diff --git a/libfatigue/Cargo.toml b/libfatigue/Cargo.toml index 7adc959..f70e7b3 100644 --- a/libfatigue/Cargo.toml +++ b/libfatigue/Cargo.toml @@ -22,7 +22,7 @@ num_cpus = "1.16.0" petname = "1.1.2" reqwest = { version = "0.12.5", features = ["json"] } serde = { version = "1.0.203", features = ["derive"] } -serde_json = "1.0.117" +serde_json = "1.0.119" serde_yaml = "0.9.34" thiserror = "1.0.61" tokio = { version = "1.38.0", features = ["full"] }