hiqlite 0.13.0

Hiqlite - highly-available, embeddable, raft-based SQLite + cache
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2026 Sebastian Dobe <sebastiandobe@mailbox.org>

#[cfg(feature = "server")]
#[tokio::main]
async fn main() -> Result<(), hiqlite::Error> {
    hiqlite::server::server().await?;
    Ok(())
}

#[cfg(not(feature = "server"))]
fn main() {
    panic!("to compile as binary, enable the 'server' feature");
}