valkey-rs

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)?;
Ok(())
}