61 releases (5 breaking)

new 0.6.8 Dec 6, 2024
0.6.5 Nov 11, 2024
0.5.13 Jul 20, 2024
0.2.0 Mar 15, 2024

#1785 in Web programming

Download history 406/week @ 2024-08-17 225/week @ 2024-08-24 125/week @ 2024-08-31 453/week @ 2024-09-07 362/week @ 2024-09-14 569/week @ 2024-09-21 137/week @ 2024-09-28 57/week @ 2024-10-05 369/week @ 2024-10-12 261/week @ 2024-10-19 315/week @ 2024-10-26 541/week @ 2024-11-02 394/week @ 2024-11-09 97/week @ 2024-11-16 120/week @ 2024-11-23 457/week @ 2024-11-30

1,108 downloads per month

MIT/Apache

6KB

DownToZero Cloud SDK

Latest Version

A base crate for the DownToZero Cloud SDK

Exposed functionality

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

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

~5–18MB
~257K SLoC