[package] name = "aho-corasick" version = "0.7.20" #:version authors = ["Andrew Gallant "] description = "Fast multiple substring searching." homepage = "https://github.com/BurntSushi/aho-corasick" repository = "https://github.com/BurntSushi/aho-corasick" readme = "README.md" keywords = ["string", "search", "text", "aho", "multi"] license = "Unlicense OR MIT" categories = ["text-processing"] autotests = false exclude = ["/aho-corasick-debug"] edition = "2018" [workspace] members = ["aho-corasick-debug", "bench"] [lib] name = "aho_corasick" [features] default = ["std"] std = ["memchr/std"] [dependencies] memchr = { version = "2.4.0", default-features = false } [dev-dependencies] # TODO: Re-enable this once the MSRV is 1.43 or greater. # See: https://github.com/BurntSushi/aho-corasick/issues/62 # doc-comment = "0.3.1" [profile.release] debug = true [profile.bench] debug = true