Skip to content

Commit 3013806

Browse files
build(deps): bump the build group across 1 directory with 8 updates
Bumps the build group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [bincode](https://github.com/bincode-org/bincode) | `2.0.1` | `3.0.0` | | [camino](https://github.com/camino-rs/camino) | `1.2.1` | `1.2.2` | | [clap](https://github.com/clap-rs/clap) | `4.5.53` | `4.5.54` | | [libc](https://github.com/rust-lang/libc) | `0.2.178` | `0.2.179` | | [rustix](https://github.com/bytecodealliance/rustix) | `1.1.2` | `1.1.3` | | [serde_json](https://github.com/serde-rs/json) | `1.0.145` | `1.0.148` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.23.0` | `3.24.0` | | [signal-hook-registry](https://github.com/vorner/signal-hook) | `1.4.7` | `1.4.8` | Updates `bincode` from 2.0.1 to 3.0.0 - [Commits](https://github.com/bincode-org/bincode/commits) Updates `camino` from 1.2.1 to 1.2.2 - [Release notes](https://github.com/camino-rs/camino/releases) - [Changelog](https://github.com/camino-rs/camino/blob/main/CHANGELOG.md) - [Commits](camino-rs/camino@camino-1.2.1...camino-1.2.2) Updates `clap` from 4.5.53 to 4.5.54 - [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.53...clap_complete-v4.5.54) Updates `libc` from 0.2.178 to 0.2.179 - [Release notes](https://github.com/rust-lang/libc/releases) - [Changelog](https://github.com/rust-lang/libc/blob/main/CHANGELOG.md) - [Commits](rust-lang/libc@0.2.178...0.2.179) Updates `rustix` from 1.1.2 to 1.1.3 - [Release notes](https://github.com/bytecodealliance/rustix/releases) - [Changelog](https://github.com/bytecodealliance/rustix/blob/main/CHANGES.md) - [Commits](bytecodealliance/rustix@v1.1.2...v1.1.3) Updates `serde_json` from 1.0.145 to 1.0.148 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.145...v1.0.148) Updates `tempfile` from 3.23.0 to 3.24.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](Stebalien/tempfile@v3.23.0...v3.24.0) Updates `signal-hook-registry` from 1.4.7 to 1.4.8 - [Changelog](https://github.com/vorner/signal-hook/blob/master/CHANGELOG.md) - [Commits](vorner/signal-hook@registry-v1.4.7...registry-v1.4.8) --- updated-dependencies: - dependency-name: bincode dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: build - dependency-name: camino dependency-version: 1.2.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: build - dependency-name: clap dependency-version: 4.5.54 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: build - dependency-name: libc dependency-version: 0.2.179 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: build - dependency-name: rustix dependency-version: 1.1.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: build - dependency-name: serde_json dependency-version: 1.0.148 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: build - dependency-name: tempfile dependency-version: 3.24.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: build - dependency-name: signal-hook-registry dependency-version: 1.4.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: build ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 3b7226e commit 3013806

File tree

2 files changed

+35
-60
lines changed

2 files changed

+35
-60
lines changed

Cargo.lock

Lines changed: 30 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ path = "src/main.rs"
2121

2222
[dependencies]
2323
anyhow = "1.0"
24-
bincode = "2.0.1"
24+
bincode = "3.0.0"
2525
bootc-internal-blockdev = "0.0.0"
2626
bootc-internal-utils = "0.0.0"
2727
cap-std-ext = "4.0.7"
28-
camino = "1.2.1"
28+
camino = "1.2.2"
2929
chrono = { version = "0.4.42", features = ["serde"] }
3030
clap = { version = "4.5", default-features = false, features = ["cargo", "derive", "std", "help", "usage", "suggestions"] }
3131
env_logger = "0.11"
@@ -42,14 +42,14 @@ openssl = "^0.10"
4242
os-release = "0.1.0"
4343
regex = "1.12.2"
4444
rpm-rs = { package = "rpm", version = "0.16.1", default-features = false, optional = true }
45-
rustix = { version = "1.1.2", features = ["process", "fs"] }
45+
rustix = { version = "1.1.3", features = ["process", "fs"] }
4646
serde = { version = "^1.0", features = ["derive"] }
4747
serde_json = "^1.0"
48-
tempfile = "^3.23"
48+
tempfile = "^3.24"
4949
uapi-version = "0.4.0"
5050
widestring = "1.2.1"
5151
walkdir = "2.3.2"
52-
signal-hook-registry = "1.4.7"
52+
signal-hook-registry = "1.4.8"
5353

5454
[profile.release]
5555
# We assume we're being delivered via e.g. RPM which supports split debuginfo

0 commit comments

Comments
 (0)