5 releases

Uses old Rust 2015

0.1.4 Oct 4, 2016
0.1.3 Jun 12, 2016
0.1.2 Jun 3, 2016
0.1.1 May 25, 2016
0.1.0 May 23, 2016

#345 in #api-wrapper

24 downloads per month

Apache-2.0

8KB

jservice-rs

Build Status

A jService API wrapper for Rust.

Documentation

https://vectorious.github.io/jservice-rs/

Usage Example

extern crate jservice;
use jservice::Clue;

fn main() {
    // get 20 random clues
    let clues: Vec<Clue> = jservice::get_random(Some(20)).unwrap();

    for clue in clues {
        println!("{}", clue.question);
    }
}

lib.rs:

jservice-rs

jservice-rs is an API wrapper for jService.

Dependencies

~8MB
~176K SLoC