forked from BurntSushi/aho-corasick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (29 loc) · 893 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "aho-corasick"
version = "0.7.3" #:version
authors = ["Andrew Gallant <[email protected]>"]
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", "/bench", "/ci/*", "/.travis.yml"]
[badges]
travis-ci = { repository = "BurntSushi/aho-corasick" }
appveyor = { repository = "BurntSushi/regex-automata" }
[workspace]
members = ["bench", "aho-corasick-debug"]
[lib]
name = "aho_corasick"
[features]
default = ["std"]
std = ["memchr/use_std"]
[dependencies]
memchr = { version = "2.2.0", default-features = false }
[profile.release]
debug = true
[profile.bench]
debug = true