sentinel_dbms/lib.rs
1pub mod collection;
2pub mod document;
3pub mod error;
4pub mod store;
5pub mod validation;
6
7pub use collection::Collection;
8pub use document::Document;
9pub use error::{Result, SentinelError};
10pub use sentinel_crypto::crypto_config::*;
11pub use store::Store;
12
13/// The current version of the Sentinel metadata format.
14pub const META_SENTINEL_VERSION: u32 = 1;