Back to Integrations

Vadyl + Rust

A language empowering everyone to build reliable and efficient software.

cargo add vadyl
Type Safe
Async/Await
Serde Integration

Implementation Guide

1

Async Client

Use the async client with Tokio.

use vadyl::Client;

#[tokio::main]
async fn main() {
    let client = Client::new(env::var("VADYL_URL")?, env::var("VADYL_KEY")?);
    let data = client.from("users").select("*").execute().await?;
}

Ready to build with Rust?