-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 903 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (31 loc) · 903 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
33
34
35
36
[package]
name = "cedarwood"
description = "efficiently-updatable double-array trie in Rust (ported from cedar)"
repository = "https://github.com/MnO2/cedarwood"
version = "0.6.1"
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"
rust-version = "1.62.0"
exclude = ["/benches/**", "/fuzz/**", "/test-support/**", "/tests/**"]
[features]
default = ["std"]
std = []
reduced-trie = []
[dev-dependencies]
cedarwood-test-support = { path = "test-support" }
criterion = "0.5"
proptest = "1.7"
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"] }