From 6de5e1aa25e91a968fd26ab2f5f957c4f8112f33 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 10:18:22 +0000 Subject: [PATCH] Bump the minor-patches group across 1 directory with 4 updates Bumps the minor-patches group with 4 updates in the / directory: [libc](https://github.com/rust-lang/libc), [tempfile](https://github.com/Stebalien/tempfile), [flate2](https://github.com/rust-lang/flate2-rs) and [clap](https://github.com/clap-rs/clap). Updates `libc` from 0.2.158 to 0.2.159 - [Release notes](https://github.com/rust-lang/libc/releases) - [Changelog](https://github.com/rust-lang/libc/blob/0.2.159/CHANGELOG.md) - [Commits](https://github.com/rust-lang/libc/compare/0.2.158...0.2.159) Updates `tempfile` from 3.12.0 to 3.13.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.12.0...v3.13.0) Updates `flate2` from 1.0.33 to 1.0.34 - [Release notes](https://github.com/rust-lang/flate2-rs/releases) - [Changelog](https://github.com/rust-lang/flate2-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/flate2-rs/compare/1.0.33...1.0.34) Updates `clap` from 4.5.18 to 4.5.20 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.18...clap_complete-v4.5.20) --- updated-dependencies: - dependency-name: libc dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-patches - dependency-name: tempfile dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-patches - dependency-name: flate2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-patches - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-patches ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 ++++++++++---------- crates/applesauce-core/Cargo.toml | 2 +- crates/applesauce/Cargo.toml | 4 ++-- crates/resource-fork/Cargo.toml | 2 +- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d97b300..f4c9215 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -203,9 +203,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.18" +version = "4.5.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0956a43b323ac1afaffc053ed5c4b7c1f1800bacd1683c353aabbb752515dd3" +checksum = "b97f376d85a664d5837dbae44bf546e6477a679ff6610010f17276f686d867e8" dependencies = [ "clap_builder", "clap_derive", @@ -213,9 +213,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.18" +version = "4.5.20" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d72166dd41634086d5803a47eb71ae740e61d84709c36f3c34110173db3961b" +checksum = "19bc80abd44e4bed93ca373a0704ccbd1b710dc5749406201bb018272808dc54" dependencies = [ "anstream", "anstyle", @@ -435,9 +435,9 @@ checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" [[package]] name = "flate2" -version = "1.0.33" +version = "1.0.34" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "324a1be68054ef05ad64b861cc9eaf1d623d2d8cb25b4bf2cb9cdd902b4bf253" +checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0" dependencies = [ "crc32fast", "libz-ng-sys", @@ -577,9 +577,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" [[package]] name = "libc" -version = "0.2.158" +version = "0.2.159" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" +checksum = "561d97a539a36e26a9a5fad1ea11a3039a67714694aaa379433e580854bc3dc5" [[package]] name = "libm" @@ -973,9 +973,9 @@ dependencies = [ [[package]] name = "tempfile" -version = "3.12.0" +version = "3.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" +checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b" dependencies = [ "cfg-if", "fastrand", diff --git a/crates/applesauce-core/Cargo.toml b/crates/applesauce-core/Cargo.toml index 9b4fbcc..461c1be 100644 --- a/crates/applesauce-core/Cargo.toml +++ b/crates/applesauce-core/Cargo.toml @@ -22,7 +22,7 @@ system-lzfse = ["lzfse"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -libc = "0.2.155" +libc = "0.2.159" memchr = "2.7" tracing = "0.1.40" diff --git a/crates/applesauce/Cargo.toml b/crates/applesauce/Cargo.toml index 94e0390..77227ed 100644 --- a/crates/applesauce/Cargo.toml +++ b/crates/applesauce/Cargo.toml @@ -28,10 +28,10 @@ resource-fork = { version = "^0.3.0", path = "../resource-fork" } applesauce-core = { version = "^0.3.2", path = "../applesauce-core" } crossbeam-channel = "0.5.13" -libc = "0.2.155" +libc = "0.2.159" memchr = "2.7" oneshot = "0.1.8" -tempfile = "3.10.1" +tempfile = "3.13.0" tracing = "0.1.40" jwalk = "0.8" diff --git a/crates/resource-fork/Cargo.toml b/crates/resource-fork/Cargo.toml index 7a4cefa..47120aa 100644 --- a/crates/resource-fork/Cargo.toml +++ b/crates/resource-fork/Cargo.toml @@ -16,5 +16,5 @@ harness = false libc = "0.2" [dev-dependencies] -tempfile = "3.10.1" +tempfile = "3.13.0" criterion = { version = "0.5.1", features = ["html_reports"] }