5 releases

0.1.5 Aug 31, 2024
0.1.3 Jun 29, 2024
0.1.2 Oct 5, 2023
0.1.1 Oct 4, 2023
0.1.0 Oct 3, 2023

#380 in Web programming

Download history 296/week @ 2024-12-25 494/week @ 2025-01-01 272/week @ 2025-01-08 231/week @ 2025-01-15 185/week @ 2025-01-22 209/week @ 2025-01-29 1643/week @ 2025-02-05 3679/week @ 2025-02-12 831/week @ 2025-02-19 2418/week @ 2025-02-26 3094/week @ 2025-03-05 4794/week @ 2025-03-12 1215/week @ 2025-03-19 1869/week @ 2025-03-26 1064/week @ 2025-04-02 627/week @ 2025-04-09

5,449 downloads per month
Used in 2 crates (via upstream-ontologist)

Apache-2.0

44KB
1K SLoC

Rust client interface for the Debian Bug Tracking System (Debbugs)

Examples

use debbugs::blocking::Debbugs;
let debbugs = Debbugs::default();
println!("{:?}", debbugs.newest_bugs(10).unwrap());

See https://wiki.debian.org/DebbugsSoapInterface for more information on the Debbugs SOAP interface.


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.

Dependencies

~13–26MB
~431K SLoC