powdb-server 0.4.2

Async TCP server for PowDB with a binary wire protocol — pure Rust, no SQL parsing layer
Documentation
1
2
3
4
5
6
7
//! PowDB TCP server — handles client connections, authentication, and query dispatch.
//!
//! Supports TLS via `tokio-rustls`, password authentication with rate limiting,
//! and concurrent query execution via `spawn_blocking`.

pub mod handler;
pub mod protocol;