1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-20 19:27:22 +03:00
wezterm/mux/Cargo.toml

51 lines
1.3 KiB
TOML
Raw Normal View History

2020-10-03 03:42:49 +03:00
[package]
name = "mux"
version = "0.1.0"
authors = ["Wez Furlong <wez@wezfurlong.org>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
2020-12-29 20:21:50 +03:00
base64 = "0.13"
2020-10-03 03:42:49 +03:00
bintree = { path = "../bintree" }
config = { path = "../config" }
2020-12-29 20:21:50 +03:00
crossbeam = "0.8"
2020-10-03 03:42:49 +03:00
downcast-rs = "1.0"
filedescriptor = { version="0.8", path = "../filedescriptor" }
lazy_static = "1.4"
2020-10-05 19:11:17 +03:00
libc = "0.2"
2020-10-03 03:42:49 +03:00
log = "0.4"
luahelper = { path = "../luahelper" }
metrics = { version="0.17", features=["std"]}
2020-10-03 03:42:49 +03:00
portable-pty = { path = "../pty", features = ["serde_support"]}
promise = { path = "../promise" }
rangeset = { path = "../rangeset" }
ratelim= { path = "../ratelim" }
regex = "1"
serde = {version="1.0", features = ["rc", "derive"]}
smol = "1.2"
terminfo = "0.7"
2020-10-03 03:42:49 +03:00
termwiz = { path = "../termwiz" }
2021-06-07 18:32:05 +03:00
textwrap = "0.14"
2020-10-03 03:42:49 +03:00
thiserror = "1.0"
tmux-cc = { path = "../tmux-cc" }
wezterm: improve shaping of emoji This is one of those massive time sinks that I almost regret... As part of recent changes to dust-off the allsorts shaper, I noticed that the harfbuzz shaper wasn't shaping as well as the allsorts one. This commit: * Adds emoji-test.txt, a text file you can `cat` to see how well the emoji are shaped and rendered. * Fixes (or at least, improves) the column width calculation for combining sequences such as "deaf man" which was previously calculated at 3 cells in width when it should have just been 2 cells wide, which resulted in a weird "prismatic" effect during rendering where the glyph would be rendered with an extra RHS portion of the glyph across 3 cells. * Improved/simplified the clustering logic used to compute fallbacks. Previously we could end up with some wonky/disjoint sequence of undefined glyphs which wouldn't be successfully resolved from a fallback font. We now make a better effort to consolidate runs of undefined glyphs for fallback. * For sequences such as "woman with veil: dark skin tone" that occupy a single cell, the shaper may return 3 clusters with 3 glyphs in the case that the font doesn't fully support this grapheme. At render time we'd just take the last glyph from that sequence and render it, resulting in eg: a female symbol in this particular case. It is generally a bit more useful to show the first glyph in the sequence (eg: person with veil) rather than the gender or skin tone, so the renderer now checks for this kind of overlapping sequence and renders only the first glyph from the sequence.
2020-11-24 00:45:38 +03:00
unicode-segmentation = "1.7"
2020-10-03 03:42:49 +03:00
url = "2"
wezterm-ssh = { path = "../wezterm-ssh" }
2020-10-03 03:42:49 +03:00
wezterm-term = { path = "../term", features=["use_serde"] }
2021-03-23 08:14:55 +03:00
[target.'cfg(any(windows, target_os="linux", target_os="macos"))'.dependencies]
2021-03-23 08:14:55 +03:00
sysinfo = "0.16"
[target."cfg(windows)".dependencies]
winapi = { version = "0.3", features = [
"handleapi",
"processthreadsapi"
]}
[dev-dependencies]
k9 = "0.11"