Crates.io | gh-repo-info |
lib.rs | gh-repo-info |
version | 0.1.0 |
source | src |
created_at | 2023-06-01 02:28:23.859808 |
updated_at | 2023-06-01 02:28:23.859808 |
description | Get GitHub repo info |
homepage | |
repository | https://github.com/vallentin/gh-repo-info |
max_upload_size | |
id | 879406 |
size | 42,522 |
Get GitHub repository information given an owner
and repo
.
[dependencies]
gh-repo-info = "0.1"
tokio = { version = "1", features = ["full"] }
#[tokio::main]
async fn main() {
let repo = gh_repo_info::get("rust-lang", "rust").await.unwrap();
println!("{:#?}", repo);
}
[dependencies]
gh-repo-info = { version = "0.1", features = ["blocking"] }
fn main() {
let repo = gh_repo_info::blocking::get("rust-lang", "rust").unwrap();
println!("{:#?}", repo);
}
GhRepoInfo {
name: "rust",
full_name: "rust-lang/rust",
url: "https://github.com/rust-lang/rust",
owner: GhRepoOwnerInfo {
name: "rust-lang",
url: "https://github.com/rust-lang",
avatar_url: "https://avatars.githubusercontent.com/u/5430905?v=4",
kind: Organization,
},
stargazers_count: 82127,
subscribers_count: 1489,
forks_count: 10830,
open_issues_count: 9549,
is_fork: false,
is_archived: false,
default_branch: "master",
homepage: "https://www.rust-lang.org",
description: "Empowering everyone to build reliable and efficient software.",
license: GhRepoLicenseInfo {
key: "other",
name: "Other",
},
language: "Rust",
topics: [
"compiler",
"hacktoberfest",
"language",
"rust",
],
}