forked from aserebryakov/trie-rs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (28 loc) · 866 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
[package]
name = "ptrie"
version = "0.7.1"
authors = [
"Alexander Serebryakov <[email protected]>",
"Vincent Emonet <[email protected]>",
]
description = """Generic trie data structure implementation (prefix tree) with support for different key and value types,
and functions to search for common prefixes or postfixes."""
keywords = ["trie", "data-structures", "generic", "prefix-tree"]
categories = ["data-structures"]
homepage = "https://github.com/vemonet/ptrie"
repository = "https://github.com/vemonet/ptrie.git"
readme = "README.md"
license-file = "LICENSE"
edition = "2021"
[dependencies]
serde = { version = "1.0", optional = true, features = ["derive"] }
[dev-dependencies]
serde_json = "1.0"
criterion = "0.5"
[features]
serde = ["dep:serde"]
[profile.release]
lto = true
[[bench]]
name = "criterion_benchmark"
harness = false