From 37a074d6c2df0fd4bd8a1bbce08d1f7515204598 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Sun, 12 Feb 2023 12:00:29 -0600 Subject: [PATCH] fix: Remove Termination feature so handler only runs on ctrl-c. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 40759d7..140a93f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" [dependencies] bevy = { version = "0.9", default-features = false } -ctrlc = { version = "3", features = ["termination"] } +ctrlc = "3" [target.'cfg(windows)'.dependencies] windows = { version = "0.44", features = ["Win32_Foundation", "Win32_System_Power", "Win32_System_Registry", "Win32_System_SystemServices"] }