From e65419929568ba010dae17eb92c0fe373f423581 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Jun 2024 08:46:27 +0000 Subject: [PATCH] build(deps): bump the rust-minor-patch group across 1 directory with 3 updates (#338) Bumps the rust-minor-patch group with 3 updates in the / directory: [serde_json](https://github.com/serde-rs/json), [uuid](https://github.com/uuid-rs/uuid) and [proptest](https://github.com/proptest-rs/proptest). Updates `serde_json` from 1.0.117 to 1.0.118 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.117...v1.0.118) Updates `uuid` from 1.8.0 to 1.9.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.8.0...1.9.1) Updates `proptest` from 1.4.0 to 1.5.0 - [Release notes](https://github.com/proptest-rs/proptest/releases) - [Changelog](https://github.com/proptest-rs/proptest/blob/master/CHANGELOG.md) - [Commits](https://github.com/proptest-rs/proptest/compare/v1.4.0...v1.5.0) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-minor-patch - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-minor-patch - dependency-name: proptest dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-minor-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 12 ++++++------ Cargo.toml | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 55d1990..0234262 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1295,9 +1295,9 @@ dependencies = [ [[package]] name = "proptest" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31b476131c3c86cb68032fdc5cb6d5a1045e3e42d96b69fa599fd77701e1f5bf" +checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d" dependencies = [ "bit-set", "bit-vec", @@ -1722,9 +1722,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.117" +version = "1.0.118" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3" +checksum = "d947f6b3163d8857ea16c4fa0dd4840d52f3041039a85decd46867eb1abef2e4" dependencies = [ "itoa", "ryu", @@ -2251,9 +2251,9 @@ dependencies = [ [[package]] name = "uuid" -version = "1.8.0" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" +checksum = "5de17fd2f7da591098415cff336e12965a28061ddace43b59cb3c430179c9439" dependencies = [ "getrandom", "rand", diff --git a/Cargo.toml b/Cargo.toml index b8abd28..82f11b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,9 +3,9 @@ members = [".", "client"] [workspace.dependencies] serde = { version = "1.0.202", default-features = false, features = ["std", "derive"] } -serde_json = { version = "1.0.117", default-features = false, features = ["std"] } +serde_json = { version = "1.0.118", default-features = false, features = ["std"] } thiserror = { version = "1.0.60", default-features = false } -uuid = { version = "1.8.0", default-features = false, features = ["v4", "fast-rng", "serde"] } +uuid = { version = "1.9.1", default-features = false, features = ["v4", "fast-rng", "serde"] } [package] name = "sandkasten" @@ -39,7 +39,7 @@ uuid.workspace = true [dev-dependencies] indoc = { version = "2.0.5", default-features = false } -proptest = "1.4.0" +proptest = "1.5.0" sandkasten-client = { path = "client", default-features = false, features = ["reqwest", "blocking"] } [features]