fix: bevy_prototype_debug_lines uses git revision instead of local path

master
hheik 2024-03-31 14:24:21 +03:00
parent 05274b68cd
commit 17b4e74ca0
2 changed files with 3 additions and 3 deletions

1
Cargo.lock generated
View File

@ -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",
]

View File

@ -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]