deps: updates unicode deps to support unicode 15 (#980)

This commit is contained in:
Clement Tsang 2023-01-14 21:05:58 -05:00 committed by GitHub
parent f712aaffa1
commit 80ef86e12a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

8
Cargo.lock generated
View File

@ -1788,15 +1788,15 @@ checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
[[package]]
name = "unicode-segmentation"
version = "1.9.0"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
[[package]]
name = "unicode-width"
version = "0.1.9"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
[[package]]
name = "unicode-xid"

View File

@ -92,8 +92,8 @@ time = { version = "0.3.9", features = ["formatting", "macros"] }
toml = "0.5.9"
tui = "0.19.0"
typed-builder = "0.10.0"
unicode-segmentation = "1.9.0"
unicode-width = "0.1.9"
unicode-segmentation = "1.10.0"
unicode-width = "0.1.10"
[target.'cfg(unix)'.dependencies]
libc = "0.2.124"