iridium-db 0.2.0

A high-performance vector-graph hybrid storage and indexing engine
1
2
3
4
5
6
7
8
9
10
11
mod driver;
mod types;

pub use driver::{embedded_driver, embedded_driver_with_store, RustDriver};
pub use types::{
    DriverConfig, DriverError, GrpcContract, MutationOptions, Result, RetryClass, RowCursor,
    GRPC_CONTRACT,
};

#[cfg(test)]
mod tests;