From 17b4e74ca0b43912009fdba814e2eac747b3a676 Mon Sep 17 00:00:00 2001 From: hheik <4469778+hheik@users.noreply.github.com> Date: Sun, 31 Mar 2024 14:24:21 +0300 Subject: [PATCH] fix: bevy_prototype_debug_lines uses git revision instead of local path --- Cargo.lock | 1 + Cargo.toml | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 30c4f28..7376442 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -837,6 +837,7 @@ dependencies = [ [[package]] name = "bevy_prototype_debug_lines" version = "0.11.1" +source = "git+https://github.com/hheik/bevy_debug_lines?rev=cdf57a6#cdf57a6e4dac89ffb03d225aa4ba33b9185dcfa2" dependencies = [ "bevy", ] diff --git a/Cargo.toml b/Cargo.toml index 3fb2348..0a90253 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,9 +11,8 @@ bevy-inspector-egui = "0.23.2" bevy_mod_debugdump = "0.10.0" bevy_rapier2d = "0.25.0" num-traits = "0.2.18" -bevy_prototype_debug_lines = { path = "../bevy_debug_lines", features = [ - # "3d" -] } # NOTE: Local version until registry updates to 0.13 +# NOTE: Fork with bevy 0.13 support, remove when upstream updates +bevy_prototype_debug_lines = { git = "https://github.com/hheik/bevy_debug_lines", rev = "cdf57a6", features = [] } # Enable a small amount of optimization in debug mode [profile.dev]