forked from daac-tools/daachorse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (29 loc) · 760 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
[package]
name = "daachorse"
version = "1.0.0"
edition = "2021"
rust-version = "1.61"
authors = [
"Koichi Akabe <[email protected]>",
"Shunsuke Kanda <[email protected]>",
]
description = "Daachorse: Double-Array Aho-Corasick"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/daac-tools/daachorse"
repository = "https://github.com/daac-tools/daachorse"
readme = "README.md"
keywords = ["search", "text", "aho", "multi", "double-array"]
categories = ["text-processing", "algorithms", "data-structures", "no-std"]
exclude = [".*"]
[dependencies]
[dev-dependencies]
[features]
default = ["alloc"]
alloc = []
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace]
members = [
"daacfind",
]