Skip to content

Commit

Permalink
Bump the minor-patches group across 1 directory with 8 updates
Browse files Browse the repository at this point in the history
Bumps the minor-patches group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [crossbeam-channel](https://github.com/crossbeam-rs/crossbeam) | `0.5.13` | `0.5.14` |
| [libc](https://github.com/rust-lang/libc) | `0.2.158` | `0.2.168` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.12.0` | `3.14.0` |
| [tracing](https://github.com/tokio-rs/tracing) | `0.1.40` | `0.1.41` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.33` | `1.0.35` |
| [clap](https://github.com/clap-rs/clap) | `4.5.18` | `4.5.23` |
| [indicatif](https://github.com/console-rs/indicatif) | `0.17.8` | `0.17.9` |
| [tracing-subscriber](https://github.com/tokio-rs/tracing) | `0.3.18` | `0.3.19` |



Updates `crossbeam-channel` from 0.5.13 to 0.5.14
- [Release notes](https://github.com/crossbeam-rs/crossbeam/releases)
- [Changelog](https://github.com/crossbeam-rs/crossbeam/blob/master/CHANGELOG.md)
- [Commits](crossbeam-rs/crossbeam@crossbeam-channel-0.5.13...crossbeam-channel-0.5.14)

Updates `libc` from 0.2.158 to 0.2.168
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Changelog](https://github.com/rust-lang/libc/blob/0.2.168/CHANGELOG.md)
- [Commits](rust-lang/libc@0.2.158...0.2.168)

Updates `tempfile` from 3.12.0 to 3.14.0
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](Stebalien/tempfile@v3.12.0...v3.14.0)

Updates `tracing` from 0.1.40 to 0.1.41
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-0.1.40...tracing-0.1.41)

Updates `flate2` from 1.0.33 to 1.0.35
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Changelog](https://github.com/rust-lang/flate2-rs/blob/main/CHANGELOG.md)
- [Commits](rust-lang/flate2-rs@1.0.33...1.0.35)

Updates `clap` from 4.5.18 to 4.5.23
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.18...clap_complete-v4.5.23)

Updates `indicatif` from 0.17.8 to 0.17.9
- [Release notes](https://github.com/console-rs/indicatif/releases)
- [Commits](console-rs/indicatif@0.17.8...0.17.9)

Updates `tracing-subscriber` from 0.3.18 to 0.3.19
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-subscriber-0.3.18...tracing-subscriber-0.3.19)

---
updated-dependencies:
- dependency-name: crossbeam-channel
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- 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: tracing
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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
- dependency-name: indicatif
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
- dependency-name: tracing-subscriber
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-patches
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 17, 2024
1 parent 97be95e commit d5440d5
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 51 deletions.
91 changes: 49 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/applesauce-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ applesauce = { version = "^0.5.4", path = "../applesauce", default-features = fa
cfg-if = "1.0.0"
clap = { version = "4.5", features = ["derive"] }
humansize = "2.1"
indicatif = "0.17.8"
indicatif = "0.17.9"
tikv-jemallocator = "0.6"
tracing = "0.1"
tracing-chrome = "0.7"
tracing-subscriber = { version = "0.3.18", features = ["fmt", "env-filter"] }
tracing-subscriber = { version = "0.3.19", features = ["fmt", "env-filter"] }

flate2 = { version = "1.0", optional = true, features = ["zlib-ng"], default-features = false }
4 changes: 2 additions & 2 deletions crates/applesauce-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ 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.168"
memchr = "2.7"
tracing = "0.1.40"
tracing = "0.1.41"

flate2 = { version = "1.0", optional = true }

Expand Down
8 changes: 4 additions & 4 deletions crates/applesauce/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ system-lzfse = ["lzfse", "applesauce-core/system-lzfse"]
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"
crossbeam-channel = "0.5.14"
libc = "0.2.168"
memchr = "2.7"
oneshot = "0.1.8"
tempfile = "3.10.1"
tracing = "0.1.40"
tempfile = "3.14.0"
tracing = "0.1.41"

jwalk = "0.8"

Expand Down
2 changes: 1 addition & 1 deletion crates/resource-fork/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ harness = false
libc = "0.2"

[dev-dependencies]
tempfile = "3.10.1"
tempfile = "3.14.0"
criterion = { version = "0.5.1", features = ["html_reports"] }

0 comments on commit d5440d5

Please sign in to comment.