From 34ebdd2403377f25cbdde3a306f1144dfa2fe3ed Mon Sep 17 00:00:00 2001 From: Daniel McNab <36049421+DJMcNab@users.noreply.github.com> Date: Tue, 19 Mar 2024 08:16:39 +0000 Subject: [PATCH] Just comment out the wgpu-profiler things --- Cargo.toml | 4 ++-- examples/with_winit/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5a79badbd..9963069cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,7 +63,7 @@ wgpu = { workspace = true, optional = true } log = { workspace = true } raw-window-handle = { workspace = true } futures-intrusive = { workspace = true } -wgpu-profiler = { workspace = true, optional = true } +# wgpu-profiler = { workspace = true, optional = true } [workspace.lints] clippy.doc_markdown = "warn" @@ -86,4 +86,4 @@ clap = "4.5.1" anyhow = "1.0" instant = { version = "0.1.12", features = ["wasm-bindgen"] } pollster = "0.3.0" -wgpu-profiler = { package = "wgpu" } +wgpu-profiler = "0.16.1" diff --git a/examples/with_winit/Cargo.toml b/examples/with_winit/Cargo.toml index 2553f30b4..879d528dc 100644 --- a/examples/with_winit/Cargo.toml +++ b/examples/with_winit/Cargo.toml @@ -15,7 +15,7 @@ crate-type = ["cdylib", "lib"] default = [] # Enable the use of wgpu-profiler. This is an optional feature for times when we use a git dependency on # wgpu (which means the dependency used in wgpu-profiler would be incompatible) -wgpu-profiler = ["dep:wgpu-profiler", "vello/wgpu-profiler"] +# wgpu-profiler = ["dep:wgpu-profiler", "vello/wgpu-profiler"] [lints] workspace = true @@ -32,7 +32,7 @@ anyhow = { workspace = true } clap = { workspace = true, features = ["derive"] } instant = { workspace = true } pollster = { workspace = true } -wgpu-profiler = { workspace = true, optional = true } +# wgpu-profiler = { workspace = true, optional = true } wgpu = { workspace = true } winit = "0.29.12"