15 unstable releases (3 breaking)

0.4.3 Aug 21, 2022
0.4.2 Jun 28, 2022
0.4.1 May 15, 2022
0.3.0 Jan 23, 2022
0.1.1 Jul 25, 2020

#827 in Web programming

48 downloads per month

MIT/Apache

29KB
658 lines

api-client

Build Status

Rust api client for demos.tf

Example

use demostf_client::{ListOrder, ListParams, ApiClient};

#[tokio::main]
async fn main() -> Result<(), demostf_client::Error> {
    let client = ApiClient::new();
    
    let demos = client.list(ListParams::default().with_order(ListOrder::Ascending), 1).await?;
    
    for demo in demos {
        println!("{}: {}", demo.id, demo.name);
    }
    Ok(())
}

Dependencies

~8–23MB
~375K SLoC