1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-19 03:11:31 +03:00
wezterm/Cargo.toml

36 lines
684 B
TOML
Raw Normal View History

[package]
name = "termwiz"
version = "0.1.0"
authors = ["Wez Furlong"]
[dependencies]
terminfo = "~0.6"
palette = "~0.4"
serde = "~1.0"
serde_derive = "~1.0"
2018-07-14 06:58:53 +03:00
failure = "~0.1"
2018-07-24 15:45:24 +03:00
vte = "~0.3"
num = "~0.2"
num-traits = "~0.2"
derive_builder = "~0.5"
semver = "0.9"
libc = "~0.2"
bitflags = "~1.0"
2018-07-27 01:33:57 +03:00
cassowary = "~0.3"
2018-07-28 07:30:49 +03:00
memmem = "~0.1"
fnv = "~1.0"
2018-08-01 19:35:07 +03:00
unicode-segmentation = "~1.2"
smallvec = "~0.6"
unicode-width = "~0.1"
[dependencies.num-derive]
version = "~0.2"
features = ["full-syntax"]
[target.'cfg(windows)'.dependencies]
winapi = {version = "~0.3", features = ["winuser", "consoleapi", "handleapi", "fileapi"]}
[target.'cfg(unix)'.dependencies]
2018-07-24 15:45:24 +03:00
termios = "~0.3"
signal-hook = "~0.1"