prefix_array 0.3.3

A generic container for searching on prefixes of keys
Documentation
[package]
name = "prefix_array"
version = "0.3.3"
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]