octocrab 0.9.1

A modern, extensible GitHub API client.
Documentation
#[tokio::main]
async fn main() -> octocrab::Result<()> {
    let license = octocrab::instance()
        .repos("rust-lang", "rust")
        .license()
        .await?;

    println!("{:#?}", license);

    Ok(())
}