-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (32 loc) · 991 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
37
38
39
[package]
name = "cedarwood"
description = "efficiently-updatable double-array trie in Rust (ported from cedar)"
repository = "https://github.com/infinilabs/cedarwood"
version = "0.4.6"
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 = "2018"
exclude = ["/benches/**"]
[features]
default = []
reduced-trie = []
persistence=[]
[dev-dependencies]
criterion = "0.4.0"
rand = "0.8.4"
[[bench]]
name = "cedarwood_benchmark"
harness = false
path = "./benches/cedarwood_benchmark.rs"
required-features = []
[package.metadata.docs.rs]
all-features = true
[dependencies]
proc-macro2 = { version="1.0.86",features = ["proc-macro"],default-features = false}
smallvec = { version = "1.6.1", features = ["union"],default-features = false }
#persistence
serde = { version = "1.0", features = ["derive"], default-features = false }
#[workspace]