mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 22:42:48 +03:00
96c4e7e9b9
According to its benchmarks, it's almost 2x faster than unicode_segmentation. It doesn't appear to make a visible difference to `time cat bigfile`, but I'll take anything that gives more headroom for such little effort of switching.
17 lines
447 B
TOML
17 lines
447 B
TOML
[package]
|
|
name = "termwiz-funcs"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
config = { path = "../../config" }
|
|
finl_unicode = "1.0.2"
|
|
terminfo = "0.7"
|
|
wezterm-dynamic = { path = "../../wezterm-dynamic" }
|
|
luahelper = { path = "../../luahelper" }
|
|
termwiz = { path = "../../termwiz", features=["use_serde"] }
|
|
lazy_static = "1.4"
|