1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-21 11:50:42 +03:00
wezterm/termwiz/Cargo.toml

50 lines
940 B
TOML
Raw Normal View History

[package]
authors = ["Wez Furlong"]
name = "termwiz"
version = "0.1.0"
2019-02-19 10:26:41 +03:00
edition = "2018"
[dependencies]
base64 = "~0.9"
bitflags = "~1.0"
cassowary = "~0.3"
derive_builder = "~0.5"
2018-07-14 06:58:53 +03:00
failure = "~0.1"
fnv = "~1.0"
image = "~0.19"
libc = "~0.2"
memmem = "~0.1"
2018-07-24 15:45:24 +03:00
num = "~0.2"
num-traits = "~0.2"
ordered-float = "~0.5"
palette = "~0.4"
regex = "~0.2"
2018-07-24 15:45:24 +03:00
semver = "0.9"
serde = {version="~1.0", features = ["rc"]}
serde_derive = "~1.0"
2018-08-01 19:35:07 +03:00
smallvec = "~0.6"
terminfo = "~0.6"
unicode-segmentation = "~1.2"
2018-08-01 19:35:07 +03:00
unicode-width = "~0.1"
# https://github.com/jwilm/vte/pull/20
vte = { git = "https://github.com/wez/vte", branch="oscbigbuf" }
[dev-dependencies]
bincode = "1.1"
[dependencies.num-derive]
features = ["full-syntax"]
version = "~0.2"
[target."cfg(unix)".dependencies]
signal-hook = "~0.1"
termios = "~0.3"
[target."cfg(windows)".dependencies.winapi]
features = [
"winuser",
"consoleapi",
"handleapi",
"fileapi",
]
version = "~0.3"