From b31471b723ca85b58061c0bea288daeccb6b48bf Mon Sep 17 00:00:00 2001 From: Julia Naomi Date: Sat, 6 Apr 2024 19:30:45 -0500 Subject: [PATCH] Fix os specific dependency (#291) --- Cargo.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3392ba5b..1c213324 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,11 +85,13 @@ bevy.workspace = true space_editor_ui.workspace = true space_prefab.workspace = true game_app.workspace = true -backtrace-on-stack-overflow = {version = "0.3", optional = true} # Modules for external crates space_bevy_xpbd_plugin = { workspace = true, optional = true } +[target.'cfg(target_os = "linux")'.dependencies] +backtrace-on-stack-overflow = {version = "0.3", optional = true} + # For versions 1.74+ [workspace.lints.rust] future-incompatible = "warn"