1[package] 2name = "aho-corasick" 3version = "0.7.20" #: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 OR MIT" 11categories = ["text-processing"] 12autotests = false 13exclude = ["/aho-corasick-debug"] 14edition = "2018" 15 16[workspace] 17members = ["aho-corasick-debug", "bench"] 18 19[lib] 20name = "aho_corasick" 21 22[features] 23default = ["std"] 24std = ["memchr/std"] 25 26[dependencies] 27memchr = { version = "2.4.0", default-features = false } 28 29[dev-dependencies] 30# TODO: Re-enable this once the MSRV is 1.43 or greater. 31# See: https://github.com/BurntSushi/aho-corasick/issues/62 32# doc-comment = "0.3.1" 33 34[profile.release] 35debug = true 36 37[profile.bench] 38debug = true 39