1[package] 2name = "aho-corasick" 3version = "0.7.18" #:version 4authors = ["Andrew Gallant <jamslam@gmail.com>"] 5description = "Fast multiple substring searching." 6homepage = "https://github.com/BurntSushi/aho-corasick" 7repository = "https://github.com/BurntSushi/aho-corasick" 8readme = "README.md" 9keywords = ["string", "search", "text", "aho", "multi"] 10license = "Unlicense/MIT" 11categories = ["text-processing"] 12autotests = false 13exclude = [ 14 "/aho-corasick-debug", "/ci/*", "/.travis.yml", "/appveyor.yml", 15] 16edition = "2018" 17 18[workspace] 19members = ["aho-corasick-debug", "bench"] 20 21[lib] 22name = "aho_corasick" 23 24[features] 25default = ["std"] 26std = ["memchr/std"] 27 28[dependencies] 29memchr = { version = "2.4.0", default-features = false } 30 31[dev-dependencies] 32# TODO: Re-enable this once the MSRV is 1.43 or greater. 33# See: https://github.com/BurntSushi/aho-corasick/issues/62 34# doc-comment = "0.3.1" 35 36[profile.release] 37debug = true 38 39[profile.bench] 40debug = true 41