From 40a307c38d65a9362e35c69a9641225759e4eadc Mon Sep 17 00:00:00 2001 From: Federico Terzi Date: Wed, 14 Jul 2021 20:49:59 +0200 Subject: [PATCH] fix(core): fix makefile configuration for newer versions of Rust --- Makefile.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.toml b/Makefile.toml index fc6286a..11190d1 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -59,6 +59,9 @@ fn main() { args.push("--release"); } + args.push("--manifest-path"); + args.push("espanso/Cargo.toml"); + let mut features = Vec::new(); if wayland { features.push("wayland");