github-local-remote 0.1.1

Find the GitHub url, repo and username for a local directory
Documentation
1
2
3
4
5
6
extern crate github_local_remote;

fn main() {
  let res = github_local_remote::stat(".").unwrap();
  println!("result {:?}", res);
}