2019-04-28 09:24:58 -04:00
|
|
|
[package]
|
|
|
|
name = "alacritty_terminal"
|
2023-02-14 18:19:19 -05:00
|
|
|
version = "0.18.1-dev"
|
2020-01-10 20:23:13 -05:00
|
|
|
authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"]
|
2019-04-28 09:24:58 -04:00
|
|
|
license = "Apache-2.0"
|
|
|
|
description = "Library for writing terminal emulators"
|
|
|
|
readme = "../README.md"
|
2020-01-10 20:23:13 -05:00
|
|
|
homepage = "https://github.com/alacritty/alacritty"
|
2021-12-26 11:47:57 -05:00
|
|
|
edition = "2021"
|
2022-11-03 12:37:54 -04:00
|
|
|
rust-version = "1.60.0"
|
2019-04-28 09:24:58 -04:00
|
|
|
|
2020-12-20 21:44:38 -05:00
|
|
|
[dependencies.alacritty_config_derive]
|
|
|
|
path = "../alacritty_config_derive"
|
2023-02-14 18:19:19 -05:00
|
|
|
version = "0.2.2-dev"
|
2020-12-20 21:44:38 -05:00
|
|
|
|
2022-08-31 18:48:38 -04:00
|
|
|
[dependencies.alacritty_config]
|
|
|
|
path = "../alacritty_config"
|
2023-02-14 18:19:19 -05:00
|
|
|
version = "0.1.2-dev"
|
2022-08-31 18:48:38 -04:00
|
|
|
|
2019-04-28 09:24:58 -04:00
|
|
|
[dependencies]
|
|
|
|
libc = "0.2"
|
|
|
|
bitflags = "1"
|
2022-08-10 08:48:46 -04:00
|
|
|
parking_lot = "0.12.0"
|
2022-03-16 12:27:55 -04:00
|
|
|
serde = { version = "1", features = ["derive", "rc"] }
|
2019-04-28 09:24:58 -04:00
|
|
|
serde_yaml = "0.8"
|
2021-01-03 06:04:52 -05:00
|
|
|
vte = { version = "0.10.0", default-features = false }
|
2019-11-23 13:23:00 -05:00
|
|
|
mio = "0.6.20"
|
2019-04-28 09:24:58 -04:00
|
|
|
mio-extras = "2"
|
|
|
|
log = "0.4"
|
|
|
|
unicode-width = "0.1"
|
2021-02-24 12:52:35 -05:00
|
|
|
base64 = "0.13.0"
|
2020-07-09 17:45:22 -04:00
|
|
|
regex-automata = "0.1.9"
|
2022-06-20 10:19:04 -04:00
|
|
|
dirs = "4.0.0"
|
2019-04-28 09:24:58 -04:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
2022-08-10 08:48:46 -04:00
|
|
|
nix = "0.24.1"
|
2021-11-14 19:56:27 -05:00
|
|
|
signal-hook = "0.3.10"
|
|
|
|
signal-hook-mio = { version = "0.2.1", features = ["support-v0_6"] }
|
2019-04-28 09:24:58 -04:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
miow = "0.3"
|
2021-07-10 11:21:19 -04:00
|
|
|
mio-anonymous-pipes = "0.2"
|
2022-09-30 07:49:02 -04:00
|
|
|
windows-sys = { version = "0.36", features = [
|
|
|
|
"Win32_System_Console",
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Security",
|
|
|
|
"Win32_System_Threading",
|
|
|
|
"Win32_System_WindowsProgramming",
|
|
|
|
]}
|
2019-04-28 14:12:36 -04:00
|
|
|
|
2019-07-07 10:51:11 -04:00
|
|
|
[dev-dependencies]
|
|
|
|
serde_json = "1.0.0"
|