-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 759 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 759 Bytes
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
[package]
name = "prefix_array"
version = "0.3.4"
edition = "2021"
keywords = ["array", "collection", "generic", "prefix", "search"]
categories = ["data-structures", "no-std"]
homepage = "https://github.com/ultrabear/prefix_array_rs"
repository = "https://github.com/ultrabear/prefix_array_rs"
authors = ["Alexander Hall <bearodark@gmail.com>"]
description = "A generic container for searching on prefixes of keys"
readme = "README.md"
license = "MPL-2.0"
# Subject to change
rust-version = "1.65"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dev-dependencies]
criterion = "0.4"
radix_trie = "0.2.1"
[[bench]]
name = "prefix_array"
harness = false
[features]
default = ["std"]
std = []
[dependencies]