2018-01-31 21:38:33 +03:00
|
|
|
[package]
|
|
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
2020-06-13 19:04:13 +03:00
|
|
|
name = "wezterm-term"
|
2018-01-31 21:38:33 +03:00
|
|
|
version = "0.1.0"
|
2019-02-19 10:20:59 +03:00
|
|
|
edition = "2018"
|
2020-06-13 19:04:13 +03:00
|
|
|
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"
|
2018-01-31 21:38:33 +03:00
|
|
|
|
2020-06-13 20:00:09 +03:00
|
|
|
[features]
|
2022-05-18 19:25:41 +03:00
|
|
|
use_serde = ["termwiz/use_serde"]
|
2020-06-13 20:00:09 +03:00
|
|
|
|
2018-01-31 21:38:33 +03:00
|
|
|
[dependencies]
|
2019-12-15 08:43:05 +03:00
|
|
|
anyhow = "1.0"
|
2021-08-16 04:21:17 +03:00
|
|
|
bitflags = "1.3"
|
2022-06-13 06:17:48 +03:00
|
|
|
csscolorparser = "0.6"
|
2023-03-17 08:41:52 +03:00
|
|
|
humansize = "2.1"
|
2021-08-03 07:34:38 +03:00
|
|
|
miniz_oxide = "0.4"
|
2022-10-23 22:07:00 +03:00
|
|
|
finl_unicode = "1.2"
|
2021-07-25 07:02:54 +03:00
|
|
|
hex = "0.4"
|
2023-03-15 21:34:47 +03:00
|
|
|
# we want image 0.24.6 or later. see https://github.com/wez/wezterm/issues/3250
|
|
|
|
image = {version="0.24", git="https://github.com/image-rs/image.git", rev="fe069785ae245a2c510fd724ef96da283b05a236"}
|
2020-12-09 11:52:24 +03:00
|
|
|
lazy_static = "1.4"
|
2019-06-09 01:30:47 +03:00
|
|
|
log = "0.4"
|
2021-10-11 05:29:42 +03:00
|
|
|
lru = "0.7"
|
2020-06-13 22:05:47 +03:00
|
|
|
num-traits = "0.2"
|
2022-05-02 07:43:22 +03:00
|
|
|
ordered-float = "3.0"
|
2020-10-25 21:59:44 +03:00
|
|
|
serde = {version="1.0", features = ["rc"]}
|
2021-07-25 07:02:54 +03:00
|
|
|
terminfo = "0.7"
|
2022-09-06 18:58:09 +03:00
|
|
|
unicode-normalization = "0.1.21"
|
2020-01-11 10:18:49 +03:00
|
|
|
url = "2"
|
2022-01-30 19:22:17 +03:00
|
|
|
wezterm-bidi = { path = "../bidi" }
|
2022-05-14 18:00:03 +03:00
|
|
|
wezterm-dynamic = { path = "../wezterm-dynamic" }
|
2018-08-04 08:37:04 +03:00
|
|
|
|
2019-05-27 02:05:51 +03:00
|
|
|
[dev-dependencies]
|
2022-11-28 07:37:25 +03:00
|
|
|
env_logger = "0.10"
|
2021-03-25 20:32:31 +03:00
|
|
|
k9 = "0.11.0"
|
2019-05-27 02:05:51 +03:00
|
|
|
|
2018-08-04 08:37:04 +03:00
|
|
|
[dependencies.termwiz]
|
2023-03-17 21:11:46 +03:00
|
|
|
version = "0.21"
|
2018-08-05 18:00:45 +03:00
|
|
|
path = "../termwiz"
|
2021-08-03 02:22:55 +03:00
|
|
|
features = ["use_image"]
|