diff options
Diffstat (limited to 'alacritty/Cargo.toml')
-rw-r--r-- | alacritty/Cargo.toml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/alacritty/Cargo.toml b/alacritty/Cargo.toml index b68d10e0..05574363 100644 --- a/alacritty/Cargo.toml +++ b/alacritty/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://github.com/alacritty/alacritty" edition = "2018" [dependencies] -alacritty_terminal = { path = "../alacritty_terminal" } +alacritty_terminal = { path = "../alacritty_terminal", default-features = false } clap = "2" log = "0.4" time = "0.1.40" @@ -49,7 +49,9 @@ winapi = { version = "0.3.7", features = ["impl-default", "wincon"]} embed-resource = "1.3" [features] -default = [] +default = ["wayland", "x11"] +x11 = ["alacritty_terminal/x11"] +wayland = ["alacritty_terminal/wayland"] # Enabling this feature makes shaders automatically reload when changed live-shader-reload = [] nightly = [] |