From f29cd2df437a8232acef0a57fa457616a8db1098 Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Tue, 2 Jul 2024 21:53:41 +0200 Subject: [PATCH] fix all features enabled by default --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 212c3cc..60260fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,9 +18,9 @@ strip = true lto = "fat" [dependencies] -input-emulation = { path = "input-emulation" } input-event = { path = "input-event" } -input-capture = { path = "input-capture" } +input-emulation = { path = "input-emulation", default-features = false } +input-capture = { path = "input-capture", default-features = false } hickory-resolver = "0.24.1" toml = "0.8"