1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-21 03:39:16 +03:00
wezterm/Cargo.toml
Wez Furlong 079ac49c6b add guiloop as indirection over glutinloop
... and remove dep on glutin.  We don't properly compile yet,
but this is a step to bringing back the egl bits we had originally.
2018-03-03 22:03:12 -08:00

55 lines
1.1 KiB
TOML

[package]
authors = ["Wez Furlong <wez@wezfurlong.org>"]
name = "wezterm"
version = "0.1.0"
[dependencies]
bitflags = "1.0.1"
clap = "2.30.0"
euclid = "0.17.0"
failure = "0.1.1"
failure_derive = "0.1.1"
futures = "0.1.18"
gl = "0.10.0"
harfbuzz-sys = "0.1.15"
libc = "0.2.36"
mio = "0.6.12"
mio-extras = "2.0.3"
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"
servo-fontconfig = "0.4.0"
egli = "0.4.0"
[target.'cfg(any(target_os = "android", all(unix, not(target_os = "macos"))))'.dependencies.glium]
version = "0.20.0"
default-features = false
features = []
[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",
"keysyms",
]
version = "0.2.0"
[target.'cfg(target_os = "macos")'.dependencies]
core-text = "9.2.0"
[features]
debug-escape-sequences = ["term/debug-escape-sequences"]
[workspace]