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