icydb-core 0.180.1

IcyDB — A schema-first typed query engine and persistence runtime for Internet Computer canisters
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::*;

mod staging;
pub(in crate::db::schema) use self::staging::*;

mod staged_store;
#[cfg_attr(
    not(test),
    expect(
        unused_imports,
        reason = "expression staged store is consumed by tests and later physical runner wiring"
    )
)]
pub(in crate::db::schema) use self::staged_store::*;