4 releases (2 breaking)
new 0.4.0 | May 5, 2025 |
---|---|
0.2.0 | Apr 12, 2025 |
0.1.1 | Apr 8, 2025 |
0.1.0 | Apr 8, 2025 |
#4 in #composable-indexes
387 downloads per month
Used in 4 crates
8KB
214 lines
composable-indexes
A Rust library for in-memory collections with flexible and composable indexes.
Features
- Batteries included - built-in indexes for common use cases.
- Fast - indexes are backed by performant data structures.
- Composable - build complex indexes from simple ones with combinators.
- Extensible - write your own index and aggregations.
- Safe: Small core, property-based testing.
Usage
use composable_indexes::*;
fn main() {
let mut collection = Collection::new();
}