Crates.io | debbugs |
lib.rs | debbugs |
version | 0.1.5 |
source | src |
created_at | 2023-10-03 23:24:31.99159 |
updated_at | 2024-08-31 22:14:24.418944 |
description | Debian Bugtracking System API client |
homepage | |
repository | https://github.com/jelmer/debbugs-rs |
max_upload_size | |
id | 991647 |
size | 98,201 |
This crate hosts a simple rust wrapper around the SOAP API for the Debian bug tracking system.
Example:
let client = debbugs::Debbugs::default(); // Connect to default instance
println!("Lastest 10 bugs: {:?}", client.newest_bugs(10));
There are two separate interfaces, one in debbugs::Debbugs, which is async - and one in debbugs::blocking::Debbugs.