sentinel-dbms 2.1.1

Cyberpath Sentinel is a filesystem-backed document DBMS written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Store events.
pub mod events;
/// Store operations.
pub mod operations;
/// Store implementation.
pub mod stor;
/// Store tests.
pub mod tests;
/// Store validation.
pub mod validation;

pub use stor::Store;