Skip to content

Commit 2414498

Browse files
authored
Merge pull request #2202 from hannobraun/dependabot/cargo/cargo-434e8b1fc2
Bump the cargo group with 7 updates
2 parents 93c27fd + b37b90d commit 2414498

File tree

10 files changed

+233
-146
lines changed

10 files changed

+233
-146
lines changed

Cargo.lock

+209-132
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/fj-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ itertools = "0.12.1"
2121
parking_lot = "0.12.0"
2222
robust = "1.1.0"
2323
spade = "2.6.0"
24-
thiserror = "1.0.53"
24+
thiserror = "1.0.57"
2525
type-map = "0.5.0"
2626

2727
[dev-dependencies]

crates/fj-export/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ workspace = true
1616
[dependencies]
1717
fj-interop.workspace = true
1818
fj-math.workspace = true
19-
thiserror = "1.0.53"
19+
thiserror = "1.0.57"
2020
threemf = "0.4.0"
2121
stl = "0.2.1"
2222
wavefront_rs = "=2.0.0-beta.1"

crates/fj-math/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ workspace = true
1717
approx = "0.5.1"
1818
decorum = "0.3.1"
1919
nalgebra = "0.32.3"
20-
num-traits = "0.2.17"
20+
num-traits = "0.2.18"
2121
parry2d-f64 = "0.13.6"
2222
parry3d-f64 = "0.13.6"
2323
robust = "1.1.0"

crates/fj-viewer/Cargo.toml

+12-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ fj-math.workspace = true
2020
nalgebra = "0.32.3"
2121
tobj = "4.0.1"
2222
raw-window-handle = "0.6.0"
23-
thiserror = "1.0.53"
23+
thiserror = "1.0.57"
2424
tracing = "0.1.40"
2525

2626
[dependencies.bytemuck]
27-
version = "1.14.1"
27+
version = "1.14.3"
2828
features = ["derive"]
2929

3030
[dependencies.image]
@@ -41,3 +41,13 @@ features = ["webgl"]
4141
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
4242
version = "0.2.12"
4343
features = ["js"]
44+
45+
# We don't depend on `web-sys` directly, but `wgpu` does. And we're enabling
46+
# experimental features of `web-sys` to support WebGPU, and it seems that
47+
# `web-sys` makes breaking changes to those in path versions.
48+
#
49+
# See https://github.com/gfx-rs/wgpu/issues/5243.
50+
#
51+
# Here, we pin `web-sys` to a known-good version.
52+
[target.'cfg(target_arch = "wasm32")'.dependencies.web-sys]
53+
version = "=0.3.67"

crates/fj-window/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ fj-interop.workspace = true
1919
fj-math.workspace = true
2020
fj-viewer.workspace = true
2121
futures = "0.3.30"
22-
thiserror = "1.0.53"
22+
thiserror = "1.0.57"
2323
winit = "0.29.2"

crates/fj/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ fj-interop.workspace = true
2121
fj-math.workspace = true
2222
fj-viewer.workspace = true
2323
fj-window.workspace = true
24-
thiserror = "1.0.53"
24+
thiserror = "1.0.57"
2525
tracing = "0.1.40"
2626

2727
[dependencies.clap]
28-
version = "4.4.18"
28+
version = "4.5.0"
2929
features = ["derive"]
3030

3131
[dependencies.tracing-subscriber]

tools/automator/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ publish = false
66

77
[dependencies]
88
anyhow = "1.0.78"
9-
chrono = "0.4.33"
9+
chrono = "0.4.34"
1010
map-macro = "0.3.0"
11-
octocrab = "0.33.3"
11+
octocrab = "0.34.1"
1212
semver = "1.0.21"
1313
serde = "1.0.196"
1414
serde_json = "1.0.113"
@@ -19,7 +19,7 @@ url = "2.5.0"
1919
path = "../autolib"
2020

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

2525
[dependencies.tokio]

tools/export-validator/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ publish = false
77

88
[dependencies]
99
anyhow = "1.0.78"
10-
tempfile = "3.8.1"
10+
tempfile = "3.10.0"
1111

1212
[build-dependencies]
1313
anyhow = "1.0.78"

tools/release-operator/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ log = "0.4.20"
1414
secstr = "0.5.0"
1515
semver = "1.0.21"
1616
serde_json = "1.0.113"
17-
thiserror = "1.0.53"
17+
thiserror = "1.0.57"
1818

1919
[dependencies.autolib]
2020
path = "../autolib"
@@ -24,7 +24,7 @@ version = "0.11.24"
2424
features = ["blocking"]
2525

2626
[dependencies.clap]
27-
version = "4.4.18"
27+
version = "4.5.0"
2828
features = ["std", "derive", "env"]
2929
default_features = false
3030

0 commit comments

Comments
 (0)