Skip to main content

index_db/
lib.rs

1//! # index-db
2//!
3//! B+tree indexing primitive for Rust storage engines - ordered keys, range scans, and concurrent access over paged storage.
4//!
5//! Scaffold release (v0.1.0). The public surface is being designed across the
6//! 0.x series and frozen at v1.0. See `docs/API.md` and `dev/ROADMAP.md`.
7
8#![cfg_attr(not(feature = "std"), no_std)]
9#![cfg_attr(docsrs, feature(doc_cfg))]
10#![deny(missing_docs)]
11#![forbid(unsafe_code)]
12
13#[cfg(test)]
14mod tests {
15    #[test]
16    fn smoke() {
17        assert_eq!(1 + 1, 2);
18    }
19}