hubcaps 0.6.2

Rust interface for Github
Documentation
use hubcaps::{Credentials, Github};
use std::env;
use std::error::Error;

#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    pretty_env_logger::init();
    let token = env::var("GITHUB_TOKEN")?;
    let github = Github::new(
        concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION")),
        Credentials::Token(token),
    )?;

    let repo = github.repo("softprops", "hubcaps");

    let forked = repo.forks().create().await?;

    println!("Forked repository to {}", forked.full_name);

    Ok(())
}