-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
32 lines (28 loc) · 942 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
[package]
name = "trie-rs"
version = "0.4.2"
authors = ["Sho Nakatani <[email protected]>", "Shane Celis <[email protected]>"]
description = "Memory efficient trie (prefix tree) and map library based on LOUDS"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/laysakura/trie-rs"
homepage = "https://github.com/laysakura/trie-rs"
keywords = ["trie", "louds", "succinct"] # up to 5 keywords, each keyword should have <= 20 chars
categories = ["compression", "data-structures"]
edition = "2021"
[dependencies]
louds-rs = "0.7"
mem_dbg = { version = "0.1.4", optional = true }
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
criterion = "0.2"
rand = "0.6"
lazy_static = "1.3"
version-sync = "0.9"
[[bench]]
name = "bench"
harness = false
[features]
serde = ["louds-rs/serde", "dep:serde"]
mem_dbg = ["louds-rs/mem_dbg", "dep:mem_dbg"]
rayon = ["louds-rs/rayon"]