1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2024-11-18 13:55:23 -05:00
alacritty/Cargo.toml
Joe Wilm e6c9c5036d [WIP] Add antialias option
Still a WIP because of unimplemented Linux portion.

Support has been added for font rasterization options. At this time, the
only supported option is antialias. It's a tri-state flag which can be
either ~ for "use default", true to force antialias, and false to force
disable antialias.

The options may be specified both globally and per font section. The per
font sections override global options. An example of a complex config
follows. In the example, the global value requests using default
antialias settings, and the normal face disables antialias.

    font:
      options:
        antialias: ~
      normal:
        family: monospace
        options:
          antialias: false

Finally, note that the top level font.options is used for fallback
fonts.
2017-10-26 20:01:17 -07:00

55 lines
1.1 KiB
TOML

[package]
name = "alacritty"
version = "0.1.0"
authors = ["Joe Wilm <joe@jwilm.com>"]
license = "Apache-2.0"
build = "build.rs"
description = "GPU-accelerated terminal emulator"
[[bin]]
doc = false
path = "src/main.rs"
name = "alacritty"
[dependencies]
libc = "0.2.30"
cgmath = "0.15"
notify = "4"
bitflags = "0.9.1"
font = { path = "./font", features = ["with-serde"] }
errno = "0.2.3"
parking_lot = "0.4.5"
serde = "1"
serde_derive = "1"
serde_json = "1"
serde_yaml = "0.7.1"
vte = "0.3.2"
mio = "0.6.10"
mio-more = "0.1.0"
copypasta = { path = "./copypasta" }
xdg = "2"
log = "0.3.8"
clap = "2"
fnv = "1"
unicode-width = "0.1.4"
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]
x11-dl = "2"
[features]
default = []
# Enabling this feature makes shaders automatically reload when changed
live-shader-reload = []
nightly = []
bench = []
[build-dependencies]
gl_generator = "0.5.5"
[profile.release]
lto = true
debug = true