1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14name = "unicode-segmentation" 15version = "1.12.0" 16authors = [ 17 "kwantam <kwantam@gmail.com>", 18 "Manish Goregaokar <manishsmail@gmail.com>", 19] 20build = false 21exclude = [ 22 "/.github", 23 "/benches/texts", 24 "/scripts/**.rs", 25 "*.txt", 26] 27autobins = false 28autoexamples = false 29autotests = false 30autobenches = false 31description = """ 32This crate provides Grapheme Cluster, Word and Sentence boundaries 33according to Unicode Standard Annex #29 rules. 34""" 35homepage = "https://github.com/unicode-rs/unicode-segmentation" 36readme = "README.md" 37keywords = [ 38 "text", 39 "unicode", 40 "grapheme", 41 "word", 42 "boundary", 43] 44license = "MIT OR Apache-2.0" 45repository = "https://github.com/unicode-rs/unicode-segmentation" 46 47[lib] 48name = "unicode_segmentation" 49path = "src/lib.rs" 50 51[[test]] 52name = "test" 53path = "tests/test.rs" 54 55[[bench]] 56name = "chars" 57path = "benches/chars.rs" 58harness = false 59 60[[bench]] 61name = "word_bounds" 62path = "benches/word_bounds.rs" 63harness = false 64 65[[bench]] 66name = "words" 67path = "benches/words.rs" 68harness = false 69 70[dev-dependencies.criterion] 71version = "0.5" 72 73[dev-dependencies.quickcheck] 74version = "0.7" 75 76[features] 77no_std = [] 78