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

#314 in Web programming

Download history 221/week @ 2024-05-19 652/week @ 2024-05-26 687/week @ 2024-06-02 218/week @ 2024-06-09 313/week @ 2024-06-16 634/week @ 2024-06-23 371/week @ 2024-06-30 400/week @ 2024-07-07 375/week @ 2024-07-14 392/week @ 2024-07-21 746/week @ 2024-07-28 348/week @ 2024-08-04 956/week @ 2024-08-11 567/week @ 2024-08-18 908/week @ 2024-08-25 1505/week @ 2024-09-01

3,948 downloads per month
Used in 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

~12–25MB
~441K SLoC