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 = "aho-corasick" 15version = "0.7.20" 16authors = ["Andrew Gallant <[email protected]>"] 17exclude = ["/aho-corasick-debug"] 18autotests = false 19description = "Fast multiple substring searching." 20homepage = "https://github.com/BurntSushi/aho-corasick" 21readme = "README.md" 22keywords = [ 23 "string", 24 "search", 25 "text", 26 "aho", 27 "multi", 28] 29categories = ["text-processing"] 30license = "Unlicense OR MIT" 31repository = "https://github.com/BurntSushi/aho-corasick" 32 33[profile.bench] 34debug = true 35 36[profile.release] 37debug = true 38 39[lib] 40name = "aho_corasick" 41 42[dependencies.memchr] 43version = "2.4.0" 44default-features = false 45 46[dev-dependencies] 47 48[features] 49default = ["std"] 50std = ["memchr/std"] 51