valkey 0.0.0-alpha1

An ergonomic Valkey driver
Documentation

valkey-rs

Crates.io docs

A Valkey driver for Rust.

This project will include sync, async, and pooling. It is still a work-in-progress.

fn main() -> Result<(), std::error::Error>> {
    let addr = SocketAddr::from((Ipv6Addr::LOCALHOST, 6379));
    let client = Client::connect(addr)?;
    // do client things
    Ok(())
}