resa 0.1.1

Modular Rest interface for searching similar compiler errors to get possible solutions.
Documentation
# resa [![Build Status]https://travis-ci.org/Menkir/resa.svg?branch=master]https://travis-ci.org/Menkir/resa
Rust API for error searching on particular platform like i.e StackOverflow. The main purpose is to decrease the time for searching issues on certain platforms.

## Installation
Apply changes on your `Cargo.toml`
```` toml
[dependencies]
resa = "0.1.0"
````

Or install the binary with
```bash
cargo install resa
```

## API Example usage
```` rust
extern crate resa;
use resa::*;

fn main(){
    let mut s: StackOverflow = StackOverflow::search("Compiler Error")
                            .filter(3);

    for issues in s.items{
        println!("(:?)", issues);
    }
}
````