sim_table_db/lib.rs
1//! Db-backed table backend for the SIM constellation.
2//!
3//! Provides [`DbDir`], a path-addressed directory tree of symbol-keyed values
4//! that satisfies the kernel table and directory contracts under capability
5//! control. Registered as a loadable library through [`install_db_dir_lib`].
6
7#![forbid(unsafe_code)]
8#![deny(missing_docs)]
9
10mod citizen;
11mod db_dir;
12
13pub use citizen::{DbDirDescriptor, db_dir_class_symbol};
14pub use db_dir::{DbDir, install_db_dir_lib};
15
16#[cfg(test)]
17mod tests;