1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-17 17:57:28 +03:00
wezterm/Cargo.toml
Wez Furlong 79bf022f68 move font code into main source
Initially I wanted to make the font code separate from
the main wterm executable in the hope that it would be
reusable.  However, we do need to be able to reach in
to both the font implementation and the SDL texture
implementation in order to capture the glyph data
into textures, so let's just embrace it all being
in the same crate.
2018-01-16 23:32:23 -08:00

21 lines
339 B
TOML

[package]
authors = ["Wez Furlong <wez@wezfurlong.org>"]
name = "wterm"
version = "0.1.0"
[dependencies]
failure = "0.1.1"
freetype = "0.3.0"
harfbuzz-sys = "0.1.15"
hexdump = "0.1.0"
servo-fontconfig = "0.4.0"
unicode-width = "0.1.4"
vte = "0.3.2"
[dependencies.sdl2]
features = [
"bundled",
"static-link",
]
version = "0.31.0"