111 releases (33 stable)

Uses new Rust 2024

new 1.3.7 Feb 13, 2026
1.3.3 Dec 27, 2025
1.2.8 Oct 12, 2025
1.0.5 Jul 15, 2025
0.2.0 Mar 15, 2024

#334 in Development tools

Download history 91/week @ 2025-10-23 58/week @ 2025-10-30 49/week @ 2025-11-06 32/week @ 2025-11-13 99/week @ 2025-11-20 76/week @ 2025-11-27 65/week @ 2025-12-04 97/week @ 2025-12-11 149/week @ 2025-12-18 136/week @ 2025-12-25 182/week @ 2026-01-01 84/week @ 2026-01-08 114/week @ 2026-01-15 50/week @ 2026-01-22 104/week @ 2026-01-29 59/week @ 2026-02-05

344 downloads per month

MIT/Apache

135KB
2K SLoC

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–24MB
~272K SLoC