mirror of
https://github.com/alacritty/alacritty.git
synced 2024-10-27 05:32:54 -04:00
47d500770a
Fixes #6845.
54 lines
1.4 KiB
TOML
54 lines
1.4 KiB
TOML
[package]
|
|
name = "alacritty_terminal"
|
|
version = "0.20.0-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.65.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.3.6"
|
|
serde = { version = "1", features = ["derive", "rc"] }
|
|
serde_yaml = "0.8"
|
|
toml = "0.7.1"
|
|
unicode-width = "0.1"
|
|
vte = { version = "0.12.0", default-features = false, features = ["ansi", "serde"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = { version = "0.26.2", default-features = false, features = ["term"] }
|
|
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.48", features = [
|
|
"Win32_System_Console",
|
|
"Win32_Foundation",
|
|
"Win32_Security",
|
|
"Win32_System_LibraryLoader",
|
|
"Win32_System_Threading",
|
|
"Win32_System_WindowsProgramming",
|
|
]}
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.0"
|