| 1 | [package] |
| 2 | |
| 3 | name = "unicode-segmentation" |
| 4 | version = "1.12.0" |
| 5 | authors = ["kwantam <kwantam@gmail.com>" , "Manish Goregaokar <manishsmail@gmail.com>" ] |
| 6 | |
| 7 | edition = "2018" |
| 8 | homepage = "https://github.com/unicode-rs/unicode-segmentation" |
| 9 | repository = "https://github.com/unicode-rs/unicode-segmentation" |
| 10 | |
| 11 | license = "MIT OR Apache-2.0" |
| 12 | keywords = ["text" , "unicode" , "grapheme" , "word" , "boundary" ] |
| 13 | readme = "README.md" |
| 14 | description = "" " |
| 15 | This crate provides Grapheme Cluster, Word and Sentence boundaries |
| 16 | according to Unicode Standard Annex #29 rules. |
| 17 | " "" |
| 18 | |
| 19 | exclude = ["/.github" , "/benches/texts" , "/scripts/**.rs" , "*.txt" ] |
| 20 | |
| 21 | [features] |
| 22 | no_std = [] # This is a no-op, preserved for backward compatibility only. |
| 23 | |
| 24 | [dev-dependencies] |
| 25 | quickcheck = "0.7" |
| 26 | criterion = "0.5" |
| 27 | |
| 28 | [[bench]] |
| 29 | name = "chars" |
| 30 | harness = false |
| 31 | |
| 32 | [[bench]] |
| 33 | name = "words" |
| 34 | harness = false |
| 35 | |
| 36 | [[bench]] |
| 37 | name = "word_bounds" |
| 38 | harness = false |
| 39 | |