gitapi-rs 0.1.2

git api in Rust
Documentation
1
2
3
4
5
6
7
8
9
extern crate gitapi_rs as Api;
use Api::core::engine::Engine;
use Api::app::profile::Profile;

fn main() {
    let mut engine = Engine::new();
    let profile = Profile::new(&mut engine).username("username".to_owned()).get();
    println!("profile: {:?}", profile);
}