forked from michaelsproul/rust_radix_trie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (25 loc) · 987 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 = "radix_trie"
version = "0.1.5"
description = "Generic radix trie data-structure."
license = "MIT"
authors = ["Michael Sproul <micsproul@gmail.com>"]
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"]
[features]
default = []
sgx = ["sgx_tstd", "nibble_vec/sgx", "endian-type/sgx"]
[dependencies]
nibble_vec = { git = "https://github.com/nabilschear/rust_nibble_vec"}
endian-type = { git = "https://github.com/nabilschear/endian-type" }
serde = { version = "1.0", optional = true , default-features = false }
sgx_tstd = { rev = "v1.0.9", git = "https://github.com/apache/mesatee-sgx.git", package="sgx_tstd", optional=true }
[dev-dependencies]
quickcheck = "0.4"
rand = "0.3"
serde_test = "1.0"
[badges]
travis-ci = { repository = "michaelsproul/rust_radix_trie" }