Skip to content

Menkir/resa

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

resa Build Status

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

[dependencies]
resa = "0.1.1"

Or install the binary with

cargo install resa

API Example usage

extern crate resa;
use resa::*;

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

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

About

Rust Error Search API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages