Skip to content

Commit 9727e75

Browse files
kpreidcwfitzgerald
authored andcommitted
Update Cargo.toml to direct-minimal-versions consistency.
1 parent 82821ae commit 9727e75

File tree

6 files changed

+24
-24
lines changed

6 files changed

+24
-24
lines changed

Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ codespan-reporting = { version = "0.12", default-features = false }
101101
ctor = "0.4"
102102
document-features = "0.2.11"
103103
encase = "0.11.0"
104-
env_logger = "0.11"
104+
env_logger = "0.11.8"
105105
fern = "0.7"
106106
flume = "0.11"
107107
futures-lite = "2"
@@ -116,10 +116,10 @@ image = { version = "0.25", default-features = false, features = ["png"] }
116116
indexmap = { version = "2.7.1", default-features = false }
117117
itertools = { version = "0.14.0" }
118118
ktx2 = "0.4"
119-
libc = { version = "0.2", default-features = false }
119+
libc = { version = "0.2.168", default-features = false }
120120
libloading = "0.8"
121121
libtest-mimic = "0.8.1"
122-
log = "0.4"
122+
log = "0.4.21"
123123
nanorand = { version = "0.7", default-features = false, features = ["wyrand"] }
124124
noise = "0.9"
125125
nv-flip = "0.1"
@@ -128,38 +128,38 @@ obj = "0.10"
128128
once_cell = { version = "1.21.3", default-features = false }
129129
# Firefox has 3.4.0 vendored, so we allow that version in our dependencies
130130
ordered-float = { version = ">=3, <=5.0", default-features = false }
131-
parking_lot = "0.12.1"
131+
parking_lot = "0.12.3"
132132
pico-args = { version = "0.5.0", features = [
133133
"eq-separator",
134134
"short-space-opt",
135135
"combined-flags",
136136
] }
137137
png = "0.17.16"
138138
pollster = "0.4"
139-
portable-atomic = "1"
139+
portable-atomic = "1.10.0"
140140
profiling = { version = "1", default-features = false }
141141
raw-window-handle = { version = "0.6.2", default-features = false }
142-
rayon = "1"
142+
rayon = "1.3.0"
143143
renderdoc-sys = "1.1.0"
144144
ron = "0.10"
145145
# NOTE: rustc-hash v2 is a completely different hasher with different performance characteristics
146146
# see discussion here (including with some other alternatives): https://github.com/gfx-rs/wgpu/issues/6999
147147
# (using default-features = false to support no-std build, avoiding any extra features that may require std::collections)
148-
rustc-hash = { version = "1", default-features = false }
148+
rustc-hash = { version = "1.1.0", default-features = false }
149149
serde_json = "1.0.140"
150-
serde = { version = "1", default-features = false }
151-
smallvec = "1"
150+
serde = { version = "1.0.219", default-features = false }
151+
smallvec = "1.9.0"
152152
static_assertions = "1.1.0"
153153
strum = { version = "0.27.1", default-features = false, features = ["derive"] }
154154
trybuild = "1"
155155
tracy-client = "0.18"
156-
thiserror = { version = "2", default-features = false }
157-
walkdir = "2"
156+
thiserror = { version = "2.0.3", default-features = false }
157+
walkdir = "2.3.0"
158158
winit = { version = "0.29", features = ["android-native-activity"] }
159159

160160
# Metal dependencies
161161
metal = "0.32.0"
162-
block = "0.1"
162+
block = "0.1.6"
163163
core-graphics-types = "0.2"
164164
objc = "0.2.5"
165165

@@ -188,11 +188,11 @@ windows = { version = "0.58", default-features = false }
188188
# wasm32 dependencies
189189
console_error_panic_hook = "0.1.7"
190190
console_log = "1"
191-
js-sys = { version = "0.3.70", default-features = false }
192-
wasm-bindgen = "0.2.97"
191+
js-sys = { version = "0.3.77", default-features = false }
192+
wasm-bindgen = "0.2.100"
193193
wasm-bindgen-futures = "0.4.45"
194194
wasm-bindgen-test = "0.3"
195-
web-sys = { version = "0.3.74", default-features = false }
195+
web-sys = { version = "0.3.77", default-features = false }
196196
web-time = "1.1.0"
197197

198198
# deno dependencies

examples/standalone/01_hello_compute/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ rust-version = "1.84"
55
publish = false
66

77
[dependencies]
8-
bytemuck = "1"
8+
bytemuck = "1.22.0"
99
env_logger = "0.11.8"
1010
pollster = "0.4"
1111
wgpu = "25.0.0"

naga/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ termcolor = ["codespan-reporting/termcolor"]
8181
stderr = ["codespan-reporting/std"]
8282

8383
[dependencies]
84-
arbitrary = { version = "1.4", features = ["derive"], optional = true }
84+
arbitrary = { version = "1.4.1", features = ["derive"], optional = true }
8585
arrayvec.workspace = true
8686
bitflags.workspace = true
8787
bit-set.workspace = true
@@ -91,7 +91,7 @@ hashbrown.workspace = true
9191
half = { workspace = true, default-features = false, features = ["num-traits"] }
9292
rustc-hash.workspace = true
9393
indexmap.workspace = true
94-
log = "0.4"
94+
log.workspace = true
9595
# `half` requires 0.2.16 for `FromBytes` and `ToBytes`.
9696
num-traits = { version = "0.2.16", default-features = false }
9797
once_cell = { workspace = true, features = ["alloc", "race"] }
@@ -105,7 +105,7 @@ serde = { version = "1.0.219", default-features = false, features = [
105105
petgraph = { version = "0.8", optional = true, default-features = false }
106106
pp-rs = { version = "0.2.1", optional = true }
107107
hexf-parse = { version = "0.2.1", optional = true }
108-
unicode-ident = { version = "1.0", optional = true }
108+
unicode-ident = { version = "1.0.5", optional = true }
109109

110110
[build-dependencies]
111111
cfg_aliases.workspace = true

naga/hlsl-snapshots/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ path = "src/lib.rs"
1111
test = false
1212

1313
[dependencies]
14-
anyhow = "1"
14+
anyhow = "1.0.97"
1515
nanoserde = "0.2.1"

wgpu-hal/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ web-sys = { workspace = true, optional = true, features = [
296296
"WebGl2RenderingContext",
297297
"OffscreenCanvas",
298298
] }
299-
js-sys = { workspace = true, optional = true, features = ["default"] }
299+
js-sys = { workspace = true, optional = true, default-features = true }
300300

301301
############################
302302
### Platform: Emscripten ###
@@ -328,5 +328,5 @@ winit.workspace = true # for "halmark"
328328
[target.'cfg(not(any(target_arch = "wasm32", target_os = "ios", target_os = "visionos")))'.dev-dependencies]
329329
glutin-winit = { workspace = true, features = ["egl", "wgl", "wayland", "x11"] }
330330
glutin = { workspace = true, features = ["egl", "wgl", "wayland", "x11"] }
331-
rwh_05 = { version = "0.5", package = "raw-window-handle" } # temporary compatibility for glutin-winit
331+
rwh_05 = { version = "0.5.2", package = "raw-window-handle" } # temporary compatibility for glutin-winit
332332
winit = { workspace = true, features = ["rwh_05"] }

wgpu-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ proc-macro = true
1717

1818
[dependencies]
1919
heck = "0.5"
20-
quote = "1"
21-
syn = { version = "2", features = ["full"] }
20+
quote = "1.0.38"
21+
syn = { version = "2.0.98", features = ["full"] }

0 commit comments

Comments
 (0)