link-common 0.5.2-rc.2

Shared Rust implementation for KalamDB link crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! SQL query execution with HTTP transport.
//!
//! `models` (query models) is always available — no `tokio-runtime` needed.
//! The HTTP executor requires the `tokio-runtime` feature.

pub mod models;

pub use models::{QueryRequest, QueryResponse, QueryResult};

#[cfg(feature = "tokio-runtime")]
mod executor;
#[cfg(feature = "tokio-runtime")]
pub use executor::{AuthRefreshCallback, QueryExecutor, UploadProgressCallback};