2019-04-28 09:24:58 -04:00
|
|
|
[package]
|
|
|
|
name = "alacritty_terminal"
|
2020-03-14 12:39:02 -04:00
|
|
|
version = "0.5.0-dev"
|
2020-01-10 20:23:13 -05:00
|
|
|
authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"]
|
2019-04-28 09:24:58 -04:00
|
|
|
license = "Apache-2.0"
|
|
|
|
description = "Library for writing terminal emulators"
|
|
|
|
readme = "../README.md"
|
2020-01-10 20:23:13 -05:00
|
|
|
homepage = "https://github.com/alacritty/alacritty"
|
2019-04-28 09:24:58 -04:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
libc = "0.2"
|
|
|
|
notify = "4"
|
|
|
|
bitflags = "1"
|
|
|
|
font = { path = "../font" }
|
2020-04-18 10:34:34 -04:00
|
|
|
parking_lot = "0.10.2"
|
2019-10-04 20:29:26 -04:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
2019-04-28 09:24:58 -04:00
|
|
|
serde_yaml = "0.8"
|
2020-02-11 18:50:20 -05:00
|
|
|
vte = { version = "0.7.0", default-features = false }
|
2019-11-23 13:23:00 -05:00
|
|
|
mio = "0.6.20"
|
2019-04-28 09:24:58 -04:00
|
|
|
mio-extras = "2"
|
|
|
|
log = "0.4"
|
|
|
|
unicode-width = "0.1"
|
2019-11-23 13:23:00 -05:00
|
|
|
base64 = "0.11.0"
|
2020-02-29 13:10:51 -05:00
|
|
|
terminfo = "0.7.1"
|
2019-08-17 22:46:29 -04:00
|
|
|
url = "2"
|
2020-03-12 20:33:12 -04:00
|
|
|
copypasta = { version = "0.6.3", default-features = false }
|
2019-04-28 09:24:58 -04:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
2020-04-18 10:34:34 -04:00
|
|
|
nix = "0.17.0"
|
2019-04-28 09:24:58 -04:00
|
|
|
signal-hook = { version = "0.1", features = ["mio-support"] }
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2020-02-17 11:24:27 -05:00
|
|
|
winpty = "0.2.0"
|
2019-04-28 09:24:58 -04:00
|
|
|
mio-named-pipes = "0.1"
|
|
|
|
miow = "0.3"
|
2019-12-15 00:21:54 -05:00
|
|
|
winapi = { version = "0.3.7", features = [
|
|
|
|
"impl-default", "basetsd", "libloaderapi", "minwindef", "ntdef", "processthreadsapi", "winbase",
|
|
|
|
"wincon", "wincontypes", "winerror", "winnt", "winuser",
|
|
|
|
]}
|
2019-04-28 09:24:58 -04:00
|
|
|
mio-anonymous-pipes = "0.1"
|
2019-04-28 14:12:36 -04:00
|
|
|
|
2019-04-28 09:24:58 -04:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
|
|
objc = "0.2.2"
|
|
|
|
|
|
|
|
[features]
|
2020-03-12 20:33:12 -04:00
|
|
|
default = ["x11", "wayland"]
|
|
|
|
x11 = ["copypasta/x11"]
|
|
|
|
wayland = ["copypasta/wayland"]
|
2019-04-28 09:24:58 -04:00
|
|
|
nightly = []
|
|
|
|
bench = []
|
|
|
|
|
2019-07-07 10:51:11 -04:00
|
|
|
[dev-dependencies]
|
|
|
|
serde_json = "1.0.0"
|