summaryrefslogtreecommitdiffstats
path: root/alacritty_terminal/Cargo.toml
blob: dbb3d25cb38391660382ae6a10063d9d7bbad8a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "alacritty_terminal"
version = "0.18.0-rc3"
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.1-rc3"

[dependencies.alacritty_config]
path = "../alacritty_config"
version = "0.1.1-rc3"

[dependencies]
libc = "0.2"
bitflags = "1"
parking_lot = "0.12.0"
serde = { version = "1", features = ["derive", "rc"] }
serde_yaml = "0.8"
vte = { version = "0.10.0", default-features = false }
mio = "0.6.20"
mio-extras = "2"
log = "0.4"
unicode-width = "0.1"
base64 = "0.13.0"
regex-automata = "0.1.9"
dirs = "4.0.0"

[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]
miow = "0.3"
mio-anonymous-pipes = "0.2"
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"