Skip to content

Commit a4c21cb

Browse files
Bump the cargo group with 5 updates
Bumps the cargo group with 5 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.35` | `4.5.36` | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.97` | `1.0.98` | | [parry2d-f64](https://github.com/dimforge/parry) | `0.18.0` | `0.19.0` | | [parry3d-f64](https://github.com/dimforge/parry) | `0.18.0` | `0.19.0` | | [wgpu](https://github.com/gfx-rs/wgpu) | `24.0.3` | `25.0.0` | Updates `clap` from 4.5.35 to 4.5.36 - [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.35...clap_complete-v4.5.36) Updates `anyhow` from 1.0.97 to 1.0.98 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](dtolnay/anyhow@1.0.97...1.0.98) Updates `parry2d-f64` from 0.18.0 to 0.19.0 - [Changelog](https://github.com/dimforge/parry/blob/master/CHANGELOG.md) - [Commits](dimforge/parry@v0.18.0...v0.19.0) Updates `parry3d-f64` from 0.18.0 to 0.19.0 - [Changelog](https://github.com/dimforge/parry/blob/master/CHANGELOG.md) - [Commits](dimforge/parry@v0.18.0...v0.19.0) Updates `wgpu` from 24.0.3 to 25.0.0 - [Release notes](https://github.com/gfx-rs/wgpu/releases) - [Changelog](https://github.com/gfx-rs/wgpu/blob/trunk/CHANGELOG.md) - [Commits](gfx-rs/wgpu@wgpu-v24.0.3...v25.0.0) --- updated-dependencies: - dependency-name: clap dependency-version: 4.5.36 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: anyhow dependency-version: 1.0.98 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo - dependency-name: parry2d-f64 dependency-version: 0.19.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: parry3d-f64 dependency-version: 0.19.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo - dependency-name: wgpu dependency-version: 25.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: cargo ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 22e45ef commit a4c21cb

File tree

10 files changed

+136
-66
lines changed

10 files changed

+136
-66
lines changed

Cargo.lock

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

crates/fj-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ type-map = "0.5.0"
2525

2626
[dev-dependencies]
2727
pretty_assertions = "1.4.1"
28-
anyhow = "1.0.97"
28+
anyhow = "1.0.98"

crates/fj-math/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ decorum = "0.4.0"
1919
iter_fixed = "0.4.0"
2020
nalgebra = "0.33.2"
2121
num-traits = "0.2.19"
22-
parry2d-f64 = "0.18.0"
23-
parry3d-f64 = "0.18.0"
22+
parry2d-f64 = "0.19.0"
23+
parry3d-f64 = "0.19.0"
2424
robust = "1.1.0"

crates/fj-viewer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ default-features = false
3535
features = ["png", "jpeg"]
3636

3737
[dependencies.wgpu]
38-
version = "24.0.3"
38+
version = "25.0.0"
3939
features = ["webgl"]
4040

4141
# We don't depend on `getrandom` directly, but we need this to enable the `js`

crates/fj/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ thiserror = "2.0.12"
2424
tracing = "0.1.41"
2525

2626
[dependencies.clap]
27-
version = "4.5.35"
27+
version = "4.5.36"
2828
features = ["derive"]
2929

3030
[dependencies.tracing-subscriber]

tools/autolib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
anyhow = "1.0.97"
7+
anyhow = "1.0.98"
88
log = "0.4.27"
99
regex = "1.11.1"
1010
semver = "1.0.26"

tools/automator/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55
publish = false
66

77
[dependencies]
8-
anyhow = "1.0.97"
8+
anyhow = "1.0.98"
99
chrono = "0.4.40"
1010
map-macro = "0.3.0"
1111
octocrab = "0.44.0"
@@ -19,7 +19,7 @@ url = "2.5.4"
1919
path = "../autolib"
2020

2121
[dependencies.clap]
22-
version = "4.5.35"
22+
version = "4.5.36"
2323
features = ["derive"]
2424

2525
[dependencies.tokio]

tools/cross-compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
anyhow = "1.0.97"
7+
anyhow = "1.0.98"

tools/export-validator/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ publish = false
66

77

88
[dependencies]
9-
anyhow = "1.0.97"
9+
anyhow = "1.0.98"
1010
tempfile = "3.19.0"
1111

1212
[build-dependencies]
13-
anyhow = "1.0.97"
13+
anyhow = "1.0.98"

tools/release-operator/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publish = false
66

77

88
[dependencies]
9-
anyhow = "1.0.97"
9+
anyhow = "1.0.98"
1010
cargo_metadata = "0.19.2"
1111
cmd_lib = "1.9.5"
1212
env_logger = "0.11.8"
@@ -24,7 +24,7 @@ version = "0.12.14"
2424
features = ["blocking"]
2525

2626
[dependencies.clap]
27-
version = "4.5.35"
27+
version = "4.5.36"
2828
features = ["std", "derive", "env"]
2929
default-features = false
3030

0 commit comments

Comments
 (0)