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

#482 in Web programming

Download history 635/week @ 2024-08-22 1360/week @ 2024-08-29 1408/week @ 2024-09-05 782/week @ 2024-09-12 1113/week @ 2024-09-19 963/week @ 2024-09-26 488/week @ 2024-10-03 245/week @ 2024-10-10 520/week @ 2024-10-17 284/week @ 2024-10-24 403/week @ 2024-10-31 389/week @ 2024-11-07 520/week @ 2024-11-14 330/week @ 2024-11-21 374/week @ 2024-11-28 432/week @ 2024-12-05

1,673 downloads per month
Used in 2 crates (via upstream-ontologist)

Apache-2.0

44KB
1K SLoC

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.


lib.rs:

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.

Dependencies

~13–26MB
~430K SLoC