aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorTheodore Dubois <tblodt@icloud.com>2017-12-13 09:52:36 -0800
committerJoe Wilm <jwilm@users.noreply.github.com>2017-12-13 09:52:36 -0800
commit94caa7667da2baba3c762e661a84a806d2212731 (patch)
tree9678b17fceaf65d402e180c9a087f7dfe215fb46 /src/lib.rs
parent9bdac6b50aa911cd8f94624a1084a1ba35be6ed4 (diff)
downloadalacritty-94caa7667da2baba3c762e661a84a806d2212731.tar.gz
alacritty-94caa7667da2baba3c762e661a84a806d2212731.zip
Remove the launcher and set the locale/current directory in alacritty (#879)
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 081259cd..dc05fbdd 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -29,6 +29,10 @@
#[cfg(any(target_os = "linux", target_os = "freebsd", target_os="dragonfly", target_os="openbsd"))]
extern crate x11_dl;
+#[cfg(target_os = "macos")]
+#[macro_use]
+extern crate objc;
+
extern crate arraydeque;
extern crate cgmath;
extern crate copypasta;
@@ -61,6 +65,7 @@ pub mod event_loop;
pub mod grid;
pub mod index;
pub mod input;
+pub mod locale;
pub mod logging;
pub mod meter;
pub mod renderer;