debbugs

Crates.iodebbugs
lib.rsdebbugs
version0.1.5
sourcesrc
created_at2023-10-03 23:24:31.99159
updated_at2024-08-31 22:14:24.418944
descriptionDebian Bugtracking System API client
homepage
repositoryhttps://github.com/jelmer/debbugs-rs
max_upload_size
id991647
size98,201
Jelmer Vernooij (jelmer)

documentation

README

Client for the Debian bug tracking system

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.

Commit count: 33

cargo fmt