| Crates.io | libveezi |
| lib.rs | libveezi |
| version | 0.4.1 |
| created_at | 2025-10-31 16:27:51.432034+00 |
| updated_at | 2025-11-07 18:25:03.931294+00 |
| description | A Rust client for the Veezi API |
| homepage | |
| repository | https://github.com/NoyoTheater/libveezi |
| max_upload_size | |
| id | 1910286 |
| size | 114,648 |
A Rust crate to work with the Veezi API.
reqwestserde for easy serialization/deserializationAdd this to your Cargo.toml:
[dependencies]
libveezi = "0.4.0"
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?;