mirror of
https://gitee.com/openharmony/third_party_rust_aho-corasick
synced 2024-11-23 07:20:26 +00:00
39 lines
915 B
TOML
39 lines
915 B
TOML
[package]
|
|
name = "aho-corasick"
|
|
version = "0.7.20" #: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 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
|