From 392c7467a94b091fe4a5caa55d383f07b7e87f5b Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Mon, 5 Apr 2021 13:06:39 -0500 Subject: [PATCH] Don't enable all Bevy features. --- Cargo.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0fadb2c..11b83fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,6 +11,9 @@ default = ["tolk"] tolk = ["tts/tolk"] [dependencies] -bevy = { git = "https://github.com/bevyengine/bevy", branch = "main" } +bevy = { git = "https://github.com/bevyengine/bevy", branch = "main", default-features = false } crossbeam-channel = "0.5" -tts = "0.15" \ No newline at end of file +tts = "0.15" + +[dev-dependencies] +bevy = { git = "https://github.com/bevyengine/bevy", branch = "main", default-features = true } \ No newline at end of file