From 463c66d362f1f449194bc9e77a88a7240db1e6e7 Mon Sep 17 00:00:00 2001 From: JMS55 <47158642+JMS55@users.noreply.github.com> Date: Sun, 6 Jul 2025 17:20:27 -0400 Subject: [PATCH] Switch to git dep --- crates/bevy_anti_aliasing/Cargo.toml | 2 +- crates/bevy_render/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/bevy_anti_aliasing/Cargo.toml b/crates/bevy_anti_aliasing/Cargo.toml index f3000b5c98..a8b51c8568 100644 --- a/crates/bevy_anti_aliasing/Cargo.toml +++ b/crates/bevy_anti_aliasing/Cargo.toml @@ -31,7 +31,7 @@ bevy_diagnostic = { path = "../bevy_diagnostic", version = "0.17.0-dev" } # other tracing = { version = "0.1", default-features = false, features = ["std"] } -dlss_wgpu = { path = "../../../dlss_wgpu", optional = true } +dlss_wgpu = { git = "https://github.com/JMS55/dlss_wgpu", optional = true } [lints] workspace = true diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index c68d11ab72..595abe76d0 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -102,7 +102,7 @@ wgpu = { version = "25", default-features = false, features = [ "fragile-send-sync-non-atomic-wasm", ] } naga = { version = "25", features = ["wgsl-in"] } -dlss_wgpu = { path = "../../../dlss_wgpu", optional = true } +dlss_wgpu = { git = "https://github.com/JMS55/dlss_wgpu", optional = true } serde = { version = "1", features = ["derive"] } bytemuck = { version = "1.5", features = ["derive", "must_cast"] } downcast-rs = { version = "2", default-features = false, features = ["std"] }