blob: 06a91f1d0985982fe4c30abdc26a5cb4d39a971f [file] [log] [blame]
[package]
name = "aho-corasick"
version = "0.7.18" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
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/MIT"
categories = ["text-processing"]
autotests = false
exclude = [
"/aho-corasick-debug", "/ci/*", "/.travis.yml", "/appveyor.yml",
]
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