diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:11:38 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:13:23 +0000 |
commit | 20431706a863f92cb37dc512fef6e48d192aaf2c (patch) | |
tree | 2867f13f5fd5437ba628c67d7f87309ccadcd286 /vendor/unicode-segmentation/Cargo.toml | |
parent | Releasing progress-linux version 1.65.0+dfsg1-2~progress7.99u1. (diff) | |
download | rustc-20431706a863f92cb37dc512fef6e48d192aaf2c.tar.xz rustc-20431706a863f92cb37dc512fef6e48d192aaf2c.zip |
Merging upstream version 1.66.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | vendor/unicode-segmentation/Cargo.toml | 29 |
1 files changed, 24 insertions, 5 deletions
diff --git a/vendor/unicode-segmentation/Cargo.toml b/vendor/unicode-segmentation/Cargo.toml index 697beb38a..0da56c81e 100644 --- a/vendor/unicode-segmentation/Cargo.toml +++ b/vendor/unicode-segmentation/Cargo.toml @@ -12,14 +12,32 @@ [package] edition = "2018" name = "unicode-segmentation" -version = "1.9.0" -authors = ["kwantam <kwantam@gmail.com>", "Manish Goregaokar <manishsmail@gmail.com>"] -exclude = ["target/*", "Cargo.lock", "scripts/tmp", "benches/texts/*", "*.txt"] -description = "This crate provides Grapheme Cluster, Word and Sentence boundaries\naccording to Unicode Standard Annex #29 rules.\n" +version = "1.10.0" +authors = [ + "kwantam <kwantam@gmail.com>", + "Manish Goregaokar <manishsmail@gmail.com>", +] +exclude = [ + "target/*", + "Cargo.lock", + "scripts/tmp", + "benches/texts/*", + "*.txt", +] +description = """ +This crate provides Grapheme Cluster, Word and Sentence boundaries +according to Unicode Standard Annex #29 rules. +""" homepage = "https://github.com/unicode-rs/unicode-segmentation" documentation = "https://unicode-rs.github.io/unicode-segmentation" readme = "README.md" -keywords = ["text", "unicode", "grapheme", "word", "boundary"] +keywords = [ + "text", + "unicode", + "grapheme", + "word", + "boundary", +] license = "MIT/Apache-2.0" repository = "https://github.com/unicode-rs/unicode-segmentation" @@ -34,6 +52,7 @@ harness = false [[bench]] name = "word_bounds" harness = false + [dev-dependencies.criterion] version = "0.3" |