1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-20 19:27:22 +03:00
wezterm/Cargo.toml

46 lines
908 B
TOML
Raw Normal View History

[package]
authors = ["Wez Furlong <wez@wezfurlong.org>"]
name = "wezterm"
version = "0.1.0"
[dependencies]
2018-01-28 03:25:34 +03:00
bitflags = "1.0.1"
2018-02-17 08:44:56 +03:00
euclid = "0.17.0"
failure = "0.1.1"
2018-02-17 08:44:56 +03:00
gl = "0.10.0"
glium = "0.20.0"
harfbuzz-sys = "0.1.15"
2018-01-26 18:49:51 +03:00
libc = "0.2.36"
mio = "0.6.12"
palette = "0.2.1"
serde = "1.0.27"
serde_derive = "1.0.27"
toml = "0.4.5"
unicode-width = "0.1.4"
[dependencies.term]
path = "term"
[target.'cfg(any(target_os = "android", all(unix, not(target_os = "macos"))))'.dependencies]
freetype = "0.3"
2018-02-21 01:10:55 +03:00
servo-fontconfig = "0.4.0"
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies.xcb]
version = "0.8.1"
[target.'cfg(all(unix, not(target_os = "macos")))'.dependencies.xcb-util]
features = [
"icccm",
"ewmh",
2018-01-28 03:25:34 +03:00
"keysyms",
]
2018-01-22 20:02:28 +03:00
version = "0.2.0"
2018-02-21 09:33:09 +03:00
[target.'cfg(target_os = "macos")'.dependencies]
core-text = "9.2.0"
[features]
debug-escape-sequences = ["term/debug-escape-sequences"]
[workspace]