Skip to main content

wombatkv_store/
lib.rs

1#![forbid(unsafe_code)]
2
3pub mod segment_store;
4pub mod wal_store;
5
6/// Returns crate identity for smoke tests.
7#[must_use]
8pub fn crate_id() -> &'static str {
9    "wombatkv-store"
10}
11
12#[cfg(test)]
13mod tests {
14    #[test]
15    fn crate_id_is_stable() {
16        assert_eq!(super::crate_id(), "wombatkv-store");
17    }
18}