Skip to content

Commit 51a8c49

Browse files
Bump the cargo group across 1 directory with 5 updates (#37)
Bumps the cargo group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [brioche-pack](https://github.com/brioche-dev/brioche) | ``db8dd28`` | ``a4c817f`` | | [libc](https://github.com/rust-lang/libc) | `0.2.172` | `0.2.174` | | [cfg-if](https://github.com/rust-lang/cfg-if) | `1.0.0` | `1.0.1` | | [clap](https://github.com/clap-rs/clap) | `4.5.39` | `4.5.40` | | [serde_with](https://github.com/jonasbb/serde_with) | `3.12.0` | `3.13.0` | Updates `brioche-pack` from `db8dd28` to `a4c817f` - [Release notes](https://github.com/brioche-dev/brioche/releases) - [Commits](brioche-dev/brioche@db8dd28...a4c817f) Updates `libc` from 0.2.172 to 0.2.174 - [Release notes](https://github.com/rust-lang/libc/releases) - [Changelog](https://github.com/rust-lang/libc/blob/0.2.174/CHANGELOG.md) - [Commits](rust-lang/libc@0.2.172...0.2.174) Updates `cfg-if` from 1.0.0 to 1.0.1 - [Release notes](https://github.com/rust-lang/cfg-if/releases) - [Changelog](https://github.com/rust-lang/cfg-if/blob/main/CHANGELOG.md) - [Commits](rust-lang/cfg-if@1.0.0...v1.0.1) Updates `clap` from 4.5.39 to 4.5.40 - [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.39...clap_complete-v4.5.40) Updates `serde_with` from 3.12.0 to 3.13.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](jonasbb/serde_with@v3.12.0...v3.13.0) --- updated-dependencies: - dependency-name: brioche-pack dependency-version: a4c817f0acc16536e4e528170bec0ee9782c4528 dependency-type: direct:production dependency-group: cargo - dependency-name: libc dependency-version: 0.2.174 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: cfg-if dependency-version: 1.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: clap dependency-version: 4.5.40 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: serde_with dependency-version: 3.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent cb25169 commit 51a8c49

5 files changed

Lines changed: 57 additions & 24 deletions

File tree

Cargo.lock

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

crates/brioche-packed-plain-exec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ rust-version.workspace = true
88
brioche-pack = { workspace = true }
99
brioche-resources = { path = "../brioche-resources" }
1010
bstr = "1.8.0"
11-
libc = "0.2.172"
11+
libc = "0.2.174"
1212
runnable-core = { path = "../runnable-core" }
1313
serde_json = "1.0.140"
1414
thiserror = "2.0.11"

crates/brioche-packed-userland-exec/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ bincode = "2.0.0-rc.3"
99
brioche-pack = { workspace = true }
1010
brioche-resources = { path = "../brioche-resources" }
1111
bstr = "1.8.0"
12-
cfg-if = "1.0.0"
13-
libc = "0.2.172"
12+
cfg-if = "1.0.1"
13+
libc = "0.2.174"
1414
thiserror = "2.0.11"
1515

1616
[target.'cfg(target_os = "linux")'.dependencies]

crates/brioche-packer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ brioche-autopack = { path = "../brioche-autopack" }
99
brioche-pack = { workspace = true }
1010
brioche-resources = { path = "../brioche-resources" }
1111
bstr = "1.9.1"
12-
clap = { version = "4.5.39", features = ["derive"] }
12+
clap = { version = "4.5.40", features = ["derive"] }
1313
color-eyre = "0.6.5"
1414
eyre = "0.6.12"
1515
globset = "0.4.16"
@@ -18,7 +18,7 @@ runnable-core = { path = "../runnable-core" }
1818
schemars = "0.8.22"
1919
serde = { version = "1.0.203", features = ["derive"] }
2020
serde_json = { version = "1.0.140" }
21-
serde_with = { version = "3.8.1", features = ["schemars_0_8"] }
21+
serde_with = { version = "3.13.0", features = ["schemars_0_8"] }
2222
walkdir = "2.5.0"
2323

2424
[lints]

crates/runnable-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ brioche-resources = { path = "../brioche-resources" }
1010
bstr = "1.9.1"
1111
schemars = "0.8.22"
1212
serde = { version = "1.0.203", features = ["derive"] }
13-
serde_with = { version = "3.8.1", features = ["schemars_0_8"] }
13+
serde_with = { version = "3.13.0", features = ["schemars_0_8"] }
1414
thiserror = "2.0.11"
1515
tick-encoding = "0.1.3"
1616

0 commit comments

Comments
 (0)