From 5c355acfecd0c1a82af2ce13d086ae08709361bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Sep 2024 12:12:56 +0000 Subject: [PATCH] Bump the rust-dependencies group with 2 updates Bumps the rust-dependencies group with 2 updates: [quick_cache](https://github.com/arthurprs/quick-cache) and [pretty_assertions](https://github.com/rust-pretty-assertions/rust-pretty-assertions). Updates `quick_cache` from 0.6.6 to 0.6.9 - [Release notes](https://github.com/arthurprs/quick-cache/releases) - [Commits](https://github.com/arthurprs/quick-cache/commits/v0.6.9) Updates `pretty_assertions` from 1.4.0 to 1.4.1 - [Release notes](https://github.com/rust-pretty-assertions/rust-pretty-assertions/releases) - [Changelog](https://github.com/rust-pretty-assertions/rust-pretty-assertions/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-pretty-assertions/rust-pretty-assertions/compare/v1.4.0...v1.4.1) --- updated-dependencies: - dependency-name: quick_cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: pretty_assertions dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ icechunk/Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 00399894d..9840b4e4a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1554,9 +1554,9 @@ dependencies = [ [[package]] name = "pretty_assertions" -version = "1.4.0" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66" +checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" dependencies = [ "diff", "yansi", @@ -1694,9 +1694,9 @@ dependencies = [ [[package]] name = "quick_cache" -version = "0.6.6" +version = "0.6.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ec0b6fed0a0ff01fa82d0c8982389375dd59c72dae84d4f8a15b1a894c273f7" +checksum = "7d7c94f8935a9df96bb6380e8592c70edf497a643f94bd23b2f76b399385dbf4" dependencies = [ "ahash", "equivalent", @@ -2880,9 +2880,9 @@ dependencies = [ [[package]] name = "yansi" -version = "0.5.1" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" +checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" [[package]] name = "zerocopy" diff --git a/icechunk/Cargo.toml b/icechunk/Cargo.toml index 829570342..17dd2e693 100644 --- a/icechunk/Cargo.toml +++ b/icechunk/Cargo.toml @@ -22,11 +22,11 @@ serde_with = { version = "3.9.0", features = ["hex"] } tokio = { version = "1.40.0", features = ["rt-multi-thread", "macros"] } test-strategy = "0.4.0" proptest = "1.5.0" -quick_cache = "0.6.6" +quick_cache = "0.6.9" base32 = "0.5.1" chrono = { version = "0.4.38", features = ["serde"] } async-recursion = "1.1.1" [dev-dependencies] -pretty_assertions = "1.4.0" +pretty_assertions = "1.4.1" proptest-state-machine = "0.3.0"