From bc7e9db4010022d9029e54b95129b4f7fb9af48d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20RAYBAUD-ROIG?= Date: Thu, 24 Dec 2015 15:10:19 +0100 Subject: [PATCH] Add missing dependencies on i686 --- Cargo.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index d9d86b69..8b833590 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,10 +41,18 @@ walkdir = "^0.1" inotify = "^0.1" mio = "^0.5" +[target.i686-unknown-linux-gnu.dependencies] +inotify = "^0.1" +mio = "^0.5" + [target.x86_64-unknown-linux-musl.dependencies] inotify = "^0.1" mio = "^0.5" +[target.i686-unknown-linux-musl.dependencies] +inotify = "^0.1" +mio = "^0.5" + [target.x86_64-apple-darwin.dependencies] fsevent = "^0.2.11" fsevent-sys = "^0.1"