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"] }