mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
80f6f542ab
Previous version of serde no longer worked; cargo packages were updated as a result. `Zero` and `One` traits were deprecated. Use of those was removed. The `Step` trait gained a lot more methods, and the index::$ty implementations were updated.
29 lines
549 B
TOML
29 lines
549 B
TOML
[package]
|
|
name = "alacritty"
|
|
version = "0.1.0"
|
|
authors = ["Joe Wilm <joe@jwilm.com>"]
|
|
license = "Apache-2.0"
|
|
exclude = ["res/*"]
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
libc = "*"
|
|
cgmath = "0.7"
|
|
notify = "2.6"
|
|
bitflags = "*"
|
|
font = { path = "./font" }
|
|
errno = "0.1.6"
|
|
parking_lot = "0.2.6"
|
|
serde = "0.7"
|
|
serde_yaml = "0.2"
|
|
serde_macros = "0.7"
|
|
|
|
[build-dependencies]
|
|
gl_generator = "0.5"
|
|
|
|
[dependencies.glutin]
|
|
version = "*"
|
|
# git = "https://github.com/jwilm/glutin"
|
|
# rev = "c95e6973ace3cbf321123a64588b27f032675be9"
|
|
# version = "*"
|
|
# path = "../glutin"
|