mirror of
https://github.com/wez/wezterm.git
synced 2024-11-29 21:44:24 +03:00
a49e4b653b
This eliminates the zsh reversed % artifact issue. Added a feature flag to turn on diagnostics even in release mode; `cargo run --release --features debug-escape-sequences`
39 lines
595 B
TOML
39 lines
595 B
TOML
[workspace]
|
|
|
|
[package]
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
name = "wezterm"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
bitflags = "1.0.1"
|
|
failure = "0.1.1"
|
|
freetype = "0.3.0"
|
|
harfbuzz-sys = "0.1.15"
|
|
libc = "0.2.36"
|
|
mio = "0.6.12"
|
|
resize = "0.3.0"
|
|
servo-fontconfig = "0.4.0"
|
|
unicode-width = "0.1.4"
|
|
|
|
[dependencies.term]
|
|
path = "term"
|
|
|
|
[dependencies.xcb]
|
|
features = ["shm"]
|
|
version = "0.8.1"
|
|
|
|
[dependencies.xcb-util]
|
|
features = [
|
|
"image",
|
|
"icccm",
|
|
"ewmh",
|
|
"misc",
|
|
"shm",
|
|
"keysyms",
|
|
]
|
|
version = "0.2.0"
|
|
|
|
[features]
|
|
debug-escape-sequences = ["term/debug-escape-sequences"]
|