-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
34 lines (25 loc) · 870 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
[package]
authors = ["Sean Leffler <[email protected]>"]
name = "qp-trie"
version = "0.8.2"
description = "An idiomatic and fast QP-trie implementation in pure Rust, written with an emphasis on safety."
documentation = "https://docs.rs/qp-trie"
homepage = "https://github.com/sdleffler/qp-trie-rs"
repository = "https://github.com/sdleffler/qp-trie-rs"
readme = "README.md"
keywords = ["trie", "radix", "map", "key", "value"]
categories = ["data-structures", "text-processing", "rust-patterns", "no-std"]
license = "MPL-2.0"
[badges]
travis-ci = { repository = "sdleffler/qp-trie-rs", branch = "master" }
[dependencies]
new_debug_unreachable = "1.0.1"
serde = { version = "1.0.11", optional = true, features = ["derive"] }
unreachable = "1.0.0"
[dev-dependencies]
bincode = "1.0"
fnv = "1.0.5"
qptrie = "0.2.2"
quickcheck = "0.9"
rand = "0.7"
serde_json = "1.0.3"