From 8f44b6631c1ca200c917b4ff5eee7ac2cf912b52 Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Sat, 10 Jul 2021 10:28:32 +0200 Subject: [PATCH] feat(core): enable modulo as a default feature --- Makefile.toml | 1 + espanso/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.toml b/Makefile.toml index 878378d..5087c8c 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -71,6 +71,7 @@ fn main() { args.push("-p"); args.push("espanso"); + args.push("--no-default-features"); args.push("--features"); args.push(&features_flag); diff --git a/espanso/Cargo.toml b/espanso/Cargo.toml index f066bd1..ca7b2b2 100644 --- a/espanso/Cargo.toml +++ b/espanso/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://github.com/federico-terzi/espanso" edition = "2018" [features] -#default = ["modulo"] +default = ["modulo"] # If the wayland feature is enabled, all X11 dependencies will be dropped # and only methods suitable for Wayland will be used