blob: 5e9a07b4700567cb01da0e79b795389313c45322 [file] [log] [blame]
[package]
name = "alacritty"
version = "0.4.0"
authors = ["Joe Wilm <joe@jwilm.com>"]
license = "Apache-2.0"
description = "GPU-accelerated terminal emulator"
readme = "../README.md"
homepage = "https://github.com/jwilm/alacritty"
edition = "2018"
[dependencies]
alacritty_terminal = { path = "../alacritty_terminal" }
clap = "2"
log = "0.4"
time = "0.1.40"
env_logger = "0.7.1"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.8"
serde_json = "1"
glutin = { git = "https://github.com/chrisduerr/glutin" }
notify = "4"
libc = "0.2"
unicode-width = "0.1"
parking_lot = "0.9"
font = { path = "../font" }
urlocator = "0.1.0"
[build-dependencies]
rustc_tools_util = "0.2.0"
[target.'cfg(not(windows))'.dependencies]
xdg = "2"
[target.'cfg(not(target_os = "macos"))'.dependencies]
image = "0.22.3"
[target.'cfg(any(target_os = "macos", windows))'.dependencies]
dirs = "2.0.2"
[target.'cfg(not(any(target_os="windows", target_os="macos")))'.dependencies]
x11-dl = "2"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.7", features = ["impl-default", "winuser", "synchapi", "roerrorapi", "winerror", "wincon", "wincontypes"]}
[features]
default = []
# Enabling this feature makes shaders automatically reload when changed
live-shader-reload = ["alacritty_terminal/live-shader-reload"]
nightly = []
bench = []
[package.metadata.deb]
maintainer = "Joe Wilm <joe@jwilm.com>"
license-file = ["../LICENSE-APACHE", "3"]
extended-description = """\
Alacritty is the fastest terminal emulator in existence. Using the GPU for \
rendering enables optimizations that simply aren't possible without it. """
depends = "$auto"
section = "rust"
priority = "optional"
assets = [
["../target/release/alacritty", "usr/bin/", "755"],
["../extra/linux/alacritty.desktop", "usr/share/applications/", "644"],
["../extra/logo/alacritty-term.svg", "usr/share/pixmaps/Alacritty.svg", "644"],
["../extra/completions/alacritty.bash", "usr/share/bash-completion/completions/alacritty", "644"],
["../extra/completions/alacritty.fish", "usr/share/fish/completions/alacritty.fish", "644"],
["../extra/completions/_alacritty", "usr/share/zsh/vendor-completions/_alacritty", "644"],
]
maintainer-scripts = "../extra/linux/debian"