mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-11 13:51:01 -05:00
04811c674b
The recent version on xdg crate moved to home crate which is used by cargo. Thus to query for home directory we can use the home dependency instead which is smaller.
52 lines
1.3 KiB
TOML
52 lines
1.3 KiB
TOML
[package]
|
|
name = "alacritty_terminal"
|
|
version = "0.18.1-dev"
|
|
authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"]
|
|
license = "Apache-2.0"
|
|
description = "Library for writing terminal emulators"
|
|
readme = "../README.md"
|
|
homepage = "https://github.com/alacritty/alacritty"
|
|
edition = "2021"
|
|
rust-version = "1.60.0"
|
|
|
|
[dependencies.alacritty_config_derive]
|
|
path = "../alacritty_config_derive"
|
|
version = "0.2.2-dev"
|
|
|
|
[dependencies.alacritty_config]
|
|
path = "../alacritty_config"
|
|
version = "0.1.2-dev"
|
|
|
|
[dependencies]
|
|
base64 = "0.13.0"
|
|
bitflags = { version = "2.2.1", features = ["serde"] }
|
|
home = "0.5.5"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
mio = "0.6.20"
|
|
mio-extras = "2"
|
|
parking_lot = "0.12.0"
|
|
regex-automata = "0.1.9"
|
|
serde = { version = "1", features = ["derive", "rc"] }
|
|
serde_yaml = "0.8"
|
|
unicode-width = "0.1"
|
|
vte = { version = "0.10.0", default-features = false }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = "0.24.1"
|
|
signal-hook = "0.3.10"
|
|
signal-hook-mio = { version = "0.2.1", features = ["support-v0_6"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
mio-anonymous-pipes = "0.2"
|
|
miow = "0.3"
|
|
windows-sys = { version = "0.36", features = [
|
|
"Win32_System_Console",
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_System_Threading",
|
|
"Win32_System_WindowsProgramming",
|
|
]}
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.0"
|