grapheme clustering and width correction

This commit is contained in:
ParkerTenBroeck 2026-01-14 15:01:48 -05:00
parent d9e291e0ff
commit 0bc1be8061
3 changed files with 30 additions and 4 deletions

17
Cargo.lock generated
View file

@ -23,6 +23,8 @@ version = "0.1.0"
dependencies = [
"serde",
"serde_with",
"unicode-display-width",
"unicode-segmentation",
]
[[package]]
@ -494,12 +496,27 @@ dependencies = [
"time-core",
]
[[package]]
name = "unicode-display-width"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a43273b656140aa2bb8e65351fe87c255f0eca706b2538a9bd4a590a3490bf3"
dependencies = [
"unicode-segmentation",
]
[[package]]
name = "unicode-ident"
version = "1.0.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
[[package]]
name = "unicode-segmentation"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
[[package]]
name = "wasm-bindgen"
version = "0.2.106"