-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 752 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 752 Bytes
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
[package]
name = "cedarwood"
description = "efficiently-updatable double-array trie in Rust (ported from cedar)"
repository = "https://github.com/MnO2/cedarwood"
version = "0.5.0"
license = "BSD-2-Clause"
authors = ["Paul Meng <me@paulme.ng>"]
readme = "README.md"
keywords = ["trie", "cedar", "string", "search", "text"]
categories = ["data-structures", "text-processing"]
edition = "2021"
exclude = ["/benches/**"]
[features]
default = []
reduced-trie = []
[dev-dependencies]
criterion = "0.5"
rand = "0.8.5"
[[bench]]
name = "cedarwood_benchmark"
harness = false
path = "./benches/cedarwood_benchmark.rs"
required-features = []
[package.metadata.docs.rs]
all-features = true
[dependencies]
smallvec = { version = "1.13", features = ["union"] }