Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 3 additions & 8 deletions .deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,6 @@ skip = [
# Winit uses an old version
{ name = "windows-sys", version = "0.52.0" },

# Loom uses a new windows version
{ name = "windows", version = "0.61.1" },
{ name = "windows-core", version = "0.61.2" },
{ name = "windows-implement", version = "0.60.0" },
{ name = "windows-interface", version = "0.59.1" },
{ name = "windows-result", version = "0.3.4" },
{ name = "windows-strings", version = "0.4.2" },

# bindgen (used by deno) uses old version
{ name = "itertools", version = "0.13.0" },
# Deno uses an old version
Expand Down Expand Up @@ -61,6 +53,9 @@ private = { ignore = true }
[sources]
allow-git = [
# Waiting on releases; used in examples/tests only

# Pending a release for https://github.com/Xudong-Huang/generator-rs/pull/75
"https://github.com/Xudong-Huang/generator-rs",
]
unknown-registry = "deny"
unknown-git = "deny"
Expand Down
165 changes: 51 additions & 114 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 10 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ indicatif = "0.18"
itertools = { version = "0.14" }
jobserver = "0.1"
ktx2 = "0.4"
libc = { version = "0.2.171", default-features = false }
libc = { version = "0.2.172", default-features = false }
# See https://github.com/rust-fuzz/libfuzzer/issues/126
libfuzzer-sys = ">0.4.0,<=0.4.7"
libloading = "0.8"
Expand Down Expand Up @@ -210,10 +210,12 @@ gpu-alloc = "0.6"
gpu-descriptor = "0.3.2"

# DX12 dependencies
gpu-allocator = { version = "0.27", default-features = false }
gpu-allocator = { version = "0.28", default-features = false, features = [
"hashbrown",
] }
range-alloc = "0.1"
mach-dxcompiler-rs = { version = "0.1.4", default-features = false } # remember to increase max_shader_model if applicable
windows-core = { version = "0.58", default-features = false }
windows-core = { version = "0.62", default-features = false }

# Gles dependencies
khronos-egl = "6"
Expand All @@ -223,7 +225,7 @@ glutin-winit = { version = "0.4", default-features = false }
glutin_wgl_sys = "0.6"

# DX12 and GLES dependencies
windows = { version = "0.58", default-features = false }
windows = { version = "0.62", default-features = false }

# wasm32 dependencies
console_error_panic_hook = "0.1.5"
Expand All @@ -245,7 +247,7 @@ deno_webidl = "0.214.0"
deno_webgpu = { version = "0.181.0", path = "./deno_webgpu" }
deno_unsync = "0.4.4"
deno_error = "0.7.0"
tokio = "1.45.1"
tokio = "1.47"
termcolor = "1.1.3"

# android dependencies
Expand All @@ -255,6 +257,9 @@ ndk-sys = "0.6"
[patch.crates-io]
wgpu = { path = "./wgpu" }

# https://github.com/Xudong-Huang/generator-rs/pull/75
generator = { git = "https://github.com/Xudong-Huang/generator-rs", rev = "70b89fdabcc0e82fe84ca17f65cc52ff25e8e6de" }

[profile.release]
lto = "thin"
debug = true
Expand Down
Loading
Loading