blob: 06a91f1d0985982fe4c30abdc26a5cb4d39a971f [file] [log] [blame]
Chih-Hung Hsieh0a0edd52020-04-07 14:24:00 -07001[package]
2name = "aho-corasick"
Joel Galenson82068452021-05-19 14:19:20 -07003version = "0.7.18" #:version
Chih-Hung Hsieh0a0edd52020-04-07 14:24:00 -07004authors = ["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/MIT"
11categories = ["text-processing"]
12autotests = false
13exclude = [
14 "/aho-corasick-debug", "/ci/*", "/.travis.yml", "/appveyor.yml",
15]
Joel Galenson82068452021-05-19 14:19:20 -070016edition = "2018"
Chih-Hung Hsieh0a0edd52020-04-07 14:24:00 -070017
18[workspace]
Joel Galenson82068452021-05-19 14:19:20 -070019members = ["aho-corasick-debug", "bench"]
Chih-Hung Hsieh0a0edd52020-04-07 14:24:00 -070020
21[lib]
22name = "aho_corasick"
23
24[features]
25default = ["std"]
Joel Galenson82068452021-05-19 14:19:20 -070026std = ["memchr/std"]
Chih-Hung Hsieh0a0edd52020-04-07 14:24:00 -070027
28[dependencies]
Joel Galenson82068452021-05-19 14:19:20 -070029memchr = { version = "2.4.0", default-features = false }
Chih-Hung Hsieh0a0edd52020-04-07 14:24:00 -070030
31[dev-dependencies]
Haibo Huang5b2c4082020-07-10 20:22:37 -070032# TODO: Re-enable this once the MSRV is 1.43 or greater.
33# See: https://github.com/BurntSushi/aho-corasick/issues/62
Joel Galenson82068452021-05-19 14:19:20 -070034# doc-comment = "0.3.1"
Chih-Hung Hsieh0a0edd52020-04-07 14:24:00 -070035
36[profile.release]
37debug = true
38
39[profile.bench]
40debug = true