2019-04-28 09:24:58 -04:00
|
|
|
[package]
|
|
|
|
name = "alacritty_terminal"
|
2019-06-16 10:10:15 -04:00
|
|
|
version = "0.3.3"
|
2019-04-28 09:24:58 -04:00
|
|
|
authors = ["Joe Wilm <joe@jwilm.com>"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
build = "build.rs"
|
|
|
|
description = "Library for writing terminal emulators"
|
|
|
|
readme = "../README.md"
|
|
|
|
homepage = "https://github.com/jwilm/alacritty"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
libc = "0.2"
|
|
|
|
notify = "4"
|
|
|
|
bitflags = "1"
|
|
|
|
font = { path = "../font" }
|
2019-09-06 15:35:28 -04:00
|
|
|
parking_lot = "0.9"
|
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"
|
|
|
|
vte = "0.3"
|
|
|
|
mio = "0.6"
|
|
|
|
mio-extras = "2"
|
|
|
|
log = "0.4"
|
|
|
|
fnv = "1"
|
|
|
|
unicode-width = "0.1"
|
|
|
|
base64 = "0.10.0"
|
|
|
|
terminfo = "0.6.1"
|
2019-08-17 22:46:29 -04:00
|
|
|
url = "2"
|
2019-06-09 07:46:31 -04:00
|
|
|
copypasta = { path = "../copypasta" }
|
2019-08-01 11:37:01 -04:00
|
|
|
rfind_url = "0.4.0"
|
2019-04-28 09:24:58 -04:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
2019-10-23 15:17:09 -04:00
|
|
|
nix = "0.15.0"
|
2019-04-28 09:24:58 -04:00
|
|
|
signal-hook = { version = "0.1", features = ["mio-support"] }
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winpty = { path = "../winpty" }
|
|
|
|
mio-named-pipes = "0.1"
|
|
|
|
miow = "0.3"
|
|
|
|
dunce = "1.0"
|
|
|
|
winapi = { version = "0.3.7", features = ["impl-default", "winuser", "synchapi", "roerrorapi", "winerror", "wincon", "wincontypes"]}
|
|
|
|
widestring = "0.4"
|
|
|
|
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]
|
|
|
|
default = []
|
|
|
|
# Enabling this feature makes shaders automatically reload when changed
|
|
|
|
live-shader-reload = []
|
|
|
|
nightly = []
|
|
|
|
bench = []
|
|
|
|
|
|
|
|
[build-dependencies]
|
2019-10-23 15:17:09 -04:00
|
|
|
gl_generator = "0.14.0"
|
2019-07-07 10:51:11 -04:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
serde_json = "1.0.0"
|