From 0f1bc4e41edb6566af5da10eff0c59db687691a8 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Fri, 25 Mar 2022 00:20:28 -0500 Subject: [PATCH] Switch to absolute Git dependencies. --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0988120..cf795c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,10 +24,10 @@ features = [ [dependencies] backtrace = "0.3" -bevy_input_actionmap = { path = "../bevy_input_actionmap" } -bevy_openal = { path = "../bevy_openal" } +bevy_input_actionmap = { git = "https://github.com/lightsoutgames/bevy_input_actionmap" } +bevy_openal = { git = "https://github.com/lightsoutgames/bevy_openal" } bevy_rapier2d = { version = "0.12", features = ["serde-serialize", "simd-stable"] } -bevy_tts = { path = "../bevy_tts", default-features = false, features = ["tolk"] } +bevy_tts = { git = "https://github.com/lightsoutgames/bevy_tts", default-features = false, features = ["tolk"] } coord_2d = "0.3" derive_more = "0.99" futures-lite = "1"