diff options
author | Mike Trinkala | 2022-10-23 23:02:58 +0000 |
---|---|---|
committer | GitHub | 2022-10-23 23:02:58 +0000 |
commit | 801984c7fc2cd3f4072f1bdf42c5fbfe1a634348 (patch) | |
tree | 3e6ae4f09d5db212e0aae60b07f6d0e845cd341b | |
parent | ce469abfe2e99b5156c948bff27aaec3fbff7a6e (diff) |
Update textwrap to 0.16.0 (#4437)
-rw-r--r-- | Cargo.lock | 29 | ||||
-rw-r--r-- | helix-core/Cargo.toml | 2 |
2 files changed, 26 insertions, 5 deletions
@@ -3,6 +3,17 @@ version = 3 [[package]] +name = "ahash" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" +dependencies = [ + "getrandom", + "once_cell", + "version_check", +] + +[[package]] name = "aho-corasick" version = "0.7.18" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -384,6 +395,15 @@ dependencies = [ ] [[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +dependencies = [ + "ahash", +] + +[[package]] name = "helix-core" version = "0.6.0" dependencies = [ @@ -1112,9 +1132,9 @@ dependencies = [ [[package]] name = "textwrap" -version = "0.15.1" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "949517c0cf1bf4ee812e2e07e08ab448e3ae0d23472aee8a06c985f0c8815b16" +checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" dependencies = [ "smawk", "unicode-linebreak", @@ -1264,10 +1284,11 @@ checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf" [[package]] name = "unicode-linebreak" -version = "0.1.2" +version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a52dcaab0c48d931f7cc8ef826fa51690a08e1ea55117ef26f89864f532383f" +checksum = "c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137" dependencies = [ + "hashbrown", "regex", ] diff --git a/helix-core/Cargo.toml b/helix-core/Cargo.toml index 4eaadd1e..7585c347 100644 --- a/helix-core/Cargo.toml +++ b/helix-core/Cargo.toml @@ -43,7 +43,7 @@ encoding_rs = "0.8" chrono = { version = "0.4", default-features = false, features = ["alloc", "std"] } etcetera = "0.4" -textwrap = "0.15.1" +textwrap = "0.16.0" [dev-dependencies] quickcheck = { version = "1", default-features = false } |