2016-02-21 08:15:41 -08:00
|
|
|
[package]
|
|
|
|
name = "alacritty"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Joe Wilm <joe@jwilm.com>"]
|
2016-02-23 20:59:31 -08:00
|
|
|
license = "Apache-2.0"
|
2016-05-20 21:36:28 -07:00
|
|
|
build = "build.rs"
|
2017-01-22 12:08:53 +03:00
|
|
|
description = "GPU-accelerated terminal emulator"
|
2016-05-20 21:36:28 -07:00
|
|
|
|
2016-11-19 16:16:20 -08:00
|
|
|
[[bin]]
|
|
|
|
doc = false
|
|
|
|
path = "src/main.rs"
|
|
|
|
name = "alacritty"
|
|
|
|
|
2016-02-21 08:15:41 -08:00
|
|
|
[dependencies]
|
2017-10-01 20:47:48 -07:00
|
|
|
libc = "0.2"
|
2018-01-26 23:20:42 +03:00
|
|
|
cgmath = "0.16"
|
2017-08-30 21:34:23 +02:00
|
|
|
notify = "4"
|
2017-10-11 18:52:23 -07:00
|
|
|
bitflags = "1"
|
2016-06-09 20:39:40 -07:00
|
|
|
font = { path = "./font" }
|
2017-10-01 20:47:48 -07:00
|
|
|
errno = "0.2"
|
|
|
|
parking_lot = "0.5"
|
2017-08-30 20:17:27 +02:00
|
|
|
serde = "1"
|
|
|
|
serde_derive = "1"
|
|
|
|
serde_json = "1"
|
2017-10-01 20:47:48 -07:00
|
|
|
serde_yaml = "0.7"
|
|
|
|
vte = "0.3"
|
|
|
|
mio = "0.6"
|
|
|
|
mio-more = "0.1"
|
2016-10-08 18:42:33 -07:00
|
|
|
copypasta = { path = "./copypasta" }
|
2017-08-30 20:43:37 +02:00
|
|
|
xdg = "2"
|
2018-01-26 23:20:42 +03:00
|
|
|
log = "0.4"
|
2017-08-30 20:43:37 +02:00
|
|
|
clap = "2"
|
|
|
|
fnv = "1"
|
2017-10-01 20:47:48 -07:00
|
|
|
unicode-width = "0.1"
|
2018-03-01 04:33:29 +08:00
|
|
|
arraydeque = "0.4"
|
2018-03-01 06:52:42 +11:00
|
|
|
glutin = "0.13"
|
2017-09-27 20:29:44 -04:00
|
|
|
clippy = { version = "*", optional = true }
|
2018-01-26 23:20:42 +03:00
|
|
|
env_logger = "0.5"
|
2018-01-02 11:32:50 -05:00
|
|
|
base64 = "0.9.0"
|
2016-12-16 22:13:51 -08:00
|
|
|
|
2017-04-26 10:26:46 -07:00
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os="dragonfly", target_os="openbsd"))'.dependencies]
|
2017-08-30 20:43:37 +02:00
|
|
|
x11-dl = "2"
|
2017-04-26 10:26:46 -07:00
|
|
|
|
2017-12-13 09:52:36 -08:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
|
|
objc = "0.2.2"
|
|
|
|
|
2016-10-27 08:43:23 -07:00
|
|
|
[features]
|
2017-10-22 17:42:40 +02:00
|
|
|
default = []
|
2016-10-27 08:43:23 -07:00
|
|
|
# Enabling this feature makes shaders automatically reload when changed
|
|
|
|
live-shader-reload = []
|
2017-01-06 16:32:29 -08:00
|
|
|
nightly = []
|
2017-05-28 09:38:10 -07:00
|
|
|
bench = []
|
2016-10-27 08:43:23 -07:00
|
|
|
|
2016-05-20 21:36:28 -07:00
|
|
|
[build-dependencies]
|
2018-03-01 06:52:42 +11:00
|
|
|
gl_generator = "0.9"
|
2016-09-23 10:12:11 -07:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = true
|