libveezi

Crates.iolibveezi
lib.rslibveezi
version0.4.1
created_at2025-10-31 16:27:51.432034+00
updated_at2025-11-07 18:25:03.931294+00
descriptionA Rust client for the Veezi API
homepage
repositoryhttps://github.com/NoyoTheater/libveezi
max_upload_size
id1910286
size114,648
Logan Devine (thetayloredman)

documentation

https://docs.rs/libveezi

README

libveezi

A Rust crate to work with the Veezi API.

Features

  • Full coverage of Veezi API endpoints
  • Asynchronous requests using reqwest
  • Strongly typed data structures with serde for easy serialization/deserialization

Installation

Add this to your Cargo.toml:

[dependencies]
libveezi = "0.4.0"

Usage

use libveezi::VeeziClient;
use libveezi::Session;

let client = VeeziClient::new("api.us.veezi.com", "your_api_key");
let sessions: Vec<Session> = client.get_sessions().await?;
Commit count: 0

cargo fmt