7 releases

new 0.3.3 Apr 26, 2024
0.3.2 Apr 24, 2024
0.2.1 Apr 14, 2024
0.2.0 Mar 15, 2024
0.1.0 Mar 13, 2024

#1770 in Web programming

Download history 99/week @ 2024-03-08 167/week @ 2024-03-15 7/week @ 2024-03-22 13/week @ 2024-03-29 4/week @ 2024-04-05 204/week @ 2024-04-12 439/week @ 2024-04-19

660 downloads per month

MIT/Apache

5KB

DownToZero Client API

Latest Version

A base crate for the DownToZero Cloud API

Exposed functionality

The dtz-crate only exposes the dtz-config crate which covers the API client and authentication requirments.

All service specific functionality is exposed through features.

Features

  • containers
  • core
  • identity
  • full (contains all features at once)
  • objectstore
  • observability
  • rss2mail

Examples

Retrieving the current Context.

[dependencies]
tokio = { version = "1", features = ["full] }
dtz = { version = "*", features = ["core"] }
#[tokio::main]
use std::str::FromStr;
use uuid::Uuid;

async fn main() {
    let config = dtz::Configuration {
        api_key: Some("some api key".to_string()),
        ..Default::default()
    };
    let ctx_id = "00000000-0000-0000-0000-000000000000";
    let result = dtz::core::apis::default_api::get_context(&config, ctx_id)
        .await
        .unwrap();
    println!("result: {result:?}");
}

Dependencies

~4–15MB
~214K SLoC