1
1
mirror of https://github.com/wez/wezterm.git synced 2024-10-26 23:58:28 +03:00
wezterm/term/Cargo.toml

43 lines
931 B
TOML
Raw Normal View History

[package]
authors = ["Wez Furlong <wez@wezfurlong.org>"]
name = "wezterm-term"
version = "0.1.0"
2019-02-19 10:20:59 +03:00
edition = "2018"
repository = "https://github.com/wez/wezterm"
description = "The Virtual Terminal Emulator core from wezterm; helpful for implementing terminal emulators"
license = "MIT"
documentation = "https://docs.rs/wezterm-term"
keywords = ["terminal", "emulator", "vte"]
readme = "README.md"
2020-06-13 20:00:09 +03:00
[features]
use_serde = ["termwiz/use_serde"]
[dependencies]
2019-12-15 08:43:05 +03:00
anyhow = "1.0"
bitflags = "1.0"
miniz_oxide = "0.4"
hex = "0.4"
image = "0.23"
lazy_static = "1.4"
2019-06-09 01:30:47 +03:00
log = "0.4"
2020-12-10 01:04:56 +03:00
lru = "0.6"
num-traits = "0.2"
ordered-float = "2.7"
palette = "0.5"
serde = {version="1.0", features = ["rc"]}
terminfo = "0.7"
unicode-segmentation = "1.8"
unicode-width = "0.1"
2020-01-11 10:18:49 +03:00
url = "2"
[dev-dependencies]
pretty_assertions = "0.6"
pretty_env_logger = "0.4"
k9 = "0.11.0"
[dependencies.termwiz]
2021-04-14 22:59:26 +03:00
version = "0.13"
path = "../termwiz"
features = ["use_image"]