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