1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-23 13:21:38 +03:00
wezterm/Cargo.toml
Wez Furlong 7ade4434fe Add basic config file parsing
So that we no longer assume Operator Mono SSm.
We now default to `monospace`.  I just tried this and the font metrics
appear to be wonky, so there's some tweaking to do.
2018-02-07 07:51:04 -08:00

42 lines
651 B
TOML

[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"
serde = "1.0.27"
serde_derive = "1.0.27"
servo-fontconfig = "0.4.0"
toml = "0.4.5"
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"]
[workspace]