Size optimizations

This commit is contained in:
Matt Green 2016-11-10 19:43:13 -05:00
parent 68960fec9a
commit 0ef334e2a1
2 changed files with 7 additions and 0 deletions

View File

@ -10,8 +10,13 @@ readme = "README.md"
keywords = ["watcher", "inotify", "fsevents", "kqueue"]
license = "Apache-2.0"
[profile.dev]
panic = "abort"
[profile.release]
lto = true
opt-level = "s"
panic = "abort"
[dependencies]
glob = "0.2.11"

View File

@ -1,4 +1,6 @@
#![feature(process_exec)]
#![feature(alloc_system)]
extern crate alloc_system;
#[macro_use]
extern crate clap;