-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathCargo.toml
36 lines (29 loc) · 801 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
[package]
name = "radix_trie"
version = "0.2.1"
description = "Generic radix trie data-structure."
edition = "2018"
license = "MIT"
authors = ["Michael Sproul <[email protected]>"]
repository = "https://github.com/michaelsproul/rust_radix_trie"
documentation = "https://docs.rs/radix_trie/"
readme = "README.md"
keywords = ["trie", "patricia", "collection", "generic", "prefix"]
categories = ["data-structures", "text-processing"]
[dependencies]
nibble_vec = "0.1"
endian-type = "0.1.2"
serde = { version = "1.0", optional = true }
[dev-dependencies]
criterion = "0.3"
quickcheck = "1.0"
rand = "0.8"
serde_test = "1.0"
[[bench]]
name = "trie_benches"
harness = false
[lib]
bench = false
[badges]
appveyor = { repository = "michaelsproul/rust_radix_trie" }
maintenance = { status = "as-is" }