2019-04-28 09:24:58 -04:00
|
|
|
[package]
|
|
|
|
name = "alacritty_terminal"
|
2023-07-22 14:31:35 -04:00
|
|
|
version = "0.20.0-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"
|
2023-10-07 23:29:57 -04:00
|
|
|
rust-version = "1.70.0"
|
2019-04-28 09:24:58 -04:00
|
|
|
|
2023-11-10 09:16:22 -05:00
|
|
|
[features]
|
|
|
|
default = ["serde"]
|
|
|
|
serde = ["dep:serde", "bitflags/serde", "vte/serde"]
|
2022-08-31 18:48:38 -04:00
|
|
|
|
2019-04-28 09:24:58 -04:00
|
|
|
[dependencies]
|
2023-10-07 23:29:57 -04:00
|
|
|
base64 = "0.21.3"
|
2023-11-10 09:16:22 -05:00
|
|
|
bitflags = "2.4.1"
|
2023-05-16 00:41:20 -04:00
|
|
|
home = "0.5.5"
|
|
|
|
libc = "0.2"
|
|
|
|
log = "0.4"
|
2022-08-10 08:48:46 -04:00
|
|
|
parking_lot = "0.12.0"
|
2023-10-07 15:56:11 -04:00
|
|
|
polling = "3.0.0"
|
2023-08-27 12:48:55 -04:00
|
|
|
regex-automata = "0.3.6"
|
2019-04-28 09:24:58 -04:00
|
|
|
unicode-width = "0.1"
|
2023-11-14 22:04:48 -05:00
|
|
|
vte = { version = "0.13.0", default-features = false, features = ["ansi", "serde"] }
|
2023-11-10 09:16:22 -05:00
|
|
|
serde = { version = "1", features = ["derive", "rc"], optional = true }
|
2019-04-28 09:24:58 -04:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
2023-10-10 19:23:19 -04:00
|
|
|
rustix-openpty = "0.1.1"
|
2021-11-14 19:56:27 -05:00
|
|
|
signal-hook = "0.3.10"
|
2019-04-28 09:24:58 -04:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2023-10-07 15:56:11 -04:00
|
|
|
piper = "0.2.1"
|
2023-10-07 23:29:57 -04:00
|
|
|
miow = "0.6.0"
|
2023-10-07 15:56:11 -04:00
|
|
|
windows-sys = { version = "0.48.0", features = [
|
2022-09-30 07:49:02 -04:00
|
|
|
"Win32_System_Console",
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Security",
|
2023-06-19 14:29:17 -04:00
|
|
|
"Win32_System_LibraryLoader",
|
2022-09-30 07:49:02 -04:00
|
|
|
"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"
|