debbugs 0.1.3

Debian Bugtracking System API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Client for the Debian bug tracking system
=========================================

This crate hosts a simple rust wrapper around the [SOAP API for the Debian bug
tracking system](https://wiki.debian.org/DebbugsSoapInterface).

Example:

```rust

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.