Rust Client Library

The Geode Rust client uses Quinn over QUIC and tokio for async execution. It provides typed values, prepared statements, query builders, and a basic connection pool.

Quick Start

use geode_client::Client;

let client = Client::new("localhost", 3141);
let mut conn = client.connect().await?;
let (page, _) = conn.query("RETURN 1 AS ok").await?;

Related Articles