3 releases

0.1.2 Oct 5, 2023
0.1.1 Oct 4, 2023
0.1.0 Oct 3, 2023

#687 in Web programming

Download history 44/week @ 2023-12-18 287/week @ 2023-12-25 37/week @ 2024-01-01 36/week @ 2024-01-08 36/week @ 2024-01-15 264/week @ 2024-01-22 60/week @ 2024-01-29 252/week @ 2024-02-05 100/week @ 2024-02-12 93/week @ 2024-02-19 173/week @ 2024-02-26 418/week @ 2024-03-04 127/week @ 2024-03-11 174/week @ 2024-03-18 421/week @ 2024-03-25 718/week @ 2024-04-01

1,562 downloads per month

Apache-2.0

40KB
949 lines

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());

Dependencies

~12–27MB
~457K SLoC