-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (35 loc) · 1.07 KB
/
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
37
38
39
40
41
42
43
[package]
name = "trie-match"
version = "0.2.0"
edition = "2021"
# Update README and CI settings, accordingly.
rust-version = "1.70"
authors = [
"Koichi Akabe <[email protected]>",
]
description = "Fast match macro"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/daac-tools/trie-match"
repository = "https://github.com/daac-tools/trie-match"
readme = "README.md"
keywords = ["match", "text", "double-array", "macro"]
categories = ["text-processing", "algorithms", "data-structures", "no-std::no-alloc"]
exclude = [".*"]
[lib]
proc-macro = true
[dependencies]
syn = { version = "2.0", features = ["full", "extra-traits"] } # MIT or Apache-2.0
proc-macro2 = "1.0" # MIT or Apache-2.0
quote = "1.0" # MIT or Apache-2.0
[features]
# Nightly only
cfg_attribute = []
[dev-dependencies]
criterion = { version = "0.4.0", features = ["html_reports"] } # MIT or Apache-2.0
phf = { version = "0.11", default-features = false, features = ["macros"] }
[[bench]]
name = "match"
harness = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]