infinite-db 0.4.0

A spatial-graph database using n-dimensional curves and hyperedges for engineering logic.
1
2
3
4
5
6
7
8
9
10
//! Server-side API and session abstractions.

/// Protocol request/response dispatcher.
pub mod api;
/// Authenticated session state and authorization checks.
pub mod session;
/// Length-prefixed request/response framing.
pub mod tcp;
/// Tokio TCP server runtime.
pub mod runtime;