1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-18 13:55:23 -05:00
alacritty/Cargo.toml

56 lines
1.1 KiB
TOML
Raw Normal View History

2016-02-21 11:15:41 -05:00
[package]
name = "alacritty"
version = "0.1.0"
authors = ["Joe Wilm <joe@jwilm.com>"]
2016-02-23 23:59:31 -05:00
license = "Apache-2.0"
build = "build.rs"
2017-01-22 04:08:53 -05:00
description = "GPU-accelerated terminal emulator"
[[bin]]
doc = false
path = "src/main.rs"
name = "alacritty"
2016-02-21 11:15:41 -05:00
[dependencies]
2017-08-30 14:43:37 -04:00
libc = "0.2.30"
cgmath = "0.15"
2017-08-30 15:34:23 -04:00
notify = "4"
2017-08-30 14:43:37 -04:00
bitflags = "0.9.1"
font = { path = "./font", features = ["with-serde"] }
2017-08-30 14:43:37 -04:00
errno = "0.2.3"
parking_lot = "0.4.5"
2017-08-30 14:17:27 -04:00
serde = "1"
serde_derive = "1"
serde_json = "1"
2017-08-30 14:43:37 -04:00
serde_yaml = "0.7.1"
vte = "0.3.2"
mio = "0.6.10"
mio-more = "0.1.0"
copypasta = { path = "./copypasta" }
2017-08-30 14:43:37 -04:00
xdg = "2"
log = "0.3.8"
clap = "2"
fnv = "1"
2017-03-02 01:24:37 -05:00
unicode-width = "0.1.4"
2017-08-30 14:43:37 -04:00
arraydeque = "0.2.3"
glutin = "0.9.2"
clippy = { version = "*", optional = true }
env_logger = "0.4"
[target.'cfg(any(target_os = "linux", target_os = "freebsd", target_os="dragonfly", target_os="openbsd"))'.dependencies]
2017-08-30 14:43:37 -04:00
x11-dl = "2"
[features]
default = []
# Enabling this feature makes shaders automatically reload when changed
live-shader-reload = []
nightly = []
bench = []
[build-dependencies]
2017-08-30 14:43:37 -04:00
gl_generator = "0.5.5"
[profile.release]
2017-01-07 23:56:29 -05:00
lto = true
debug = true