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]
|
2016-02-21 15:20:03 -08:00
|
|
|
libc = "*"
|
2016-02-23 20:42:58 -08:00
|
|
|
cgmath = "0.7"
|
2016-07-15 07:55:44 -07:00
|
|
|
notify = "2.6"
|
2016-06-06 16:54:15 -07:00
|
|
|
bitflags = "*"
|
2016-06-09 20:39:40 -07:00
|
|
|
font = { path = "./font" }
|
|
|
|
errno = "0.1.6"
|
2017-01-06 15:31:12 -08:00
|
|
|
lazy_static = "0.2.2"
|
2017-02-02 20:50:48 -08:00
|
|
|
parking_lot = "0.3.1"
|
2017-01-29 17:05:46 -08:00
|
|
|
serde = "0.9"
|
|
|
|
serde_yaml = "0.6"
|
|
|
|
serde_derive = "0.9"
|
2017-02-01 09:55:23 -08:00
|
|
|
vte = "0.2.2"
|
2016-09-24 16:11:50 -07:00
|
|
|
mio = "0.6"
|
2017-01-29 17:05:46 -08:00
|
|
|
serde_json = "0.9"
|
2016-10-08 18:42:33 -07:00
|
|
|
copypasta = { path = "./copypasta" }
|
2017-01-02 20:04:46 -08:00
|
|
|
xdg = "2.0.0"
|
2017-01-13 08:15:06 +01:00
|
|
|
log = "0.3"
|
2017-01-22 12:08:53 +03:00
|
|
|
clap = "2.20"
|
2017-01-13 10:03:51 -08:00
|
|
|
fnv = "1.0.5"
|
2016-02-27 20:26:31 -08:00
|
|
|
|
2016-12-16 22:13:51 -08:00
|
|
|
clippy = { version = "0.0.104", optional = true }
|
|
|
|
|
2016-10-27 08:43:23 -07:00
|
|
|
[features]
|
2016-11-19 18:12:04 -08:00
|
|
|
default = ["err-println"]
|
2016-10-27 08:43:23 -07:00
|
|
|
# Enabling this feature makes shaders automatically reload when changed
|
|
|
|
live-shader-reload = []
|
2016-11-19 18:12:04 -08:00
|
|
|
err-println = []
|
2017-01-06 16:32:29 -08:00
|
|
|
nightly = []
|
2016-10-27 08:43:23 -07:00
|
|
|
|
2016-05-20 21:36:28 -07:00
|
|
|
[build-dependencies]
|
|
|
|
gl_generator = "0.5"
|
|
|
|
|
2016-02-27 20:26:31 -08:00
|
|
|
[dependencies.glutin]
|
2016-07-30 12:47:22 -07:00
|
|
|
git = "https://github.com/jwilm/glutin"
|
2016-11-19 18:37:17 -08:00
|
|
|
rev = "af7fe340bd4a2af53ea521defcb4f377cdc588cf"
|
2016-09-23 10:12:11 -07:00
|
|
|
|
|
|
|
[profile.release]
|
2017-01-07 23:56:29 -05:00
|
|
|
lto = true
|
2016-09-23 10:12:11 -07:00
|
|
|
debug = true
|