#codecov #api-client #owner #api-bindings

rust-codecov

Codecov API 客户端用于 Rust

1 个不稳定版本

0.1.0 2023年7月19日

#21#owner

BSD-3-Clause 协议

12KB
259

rust-codecov

描述

Codecov API (v2) 的轻量级封装。https://docs.codecov.com/reference/overview

用法

use rust_codecov::{Client, Owner};

// let client = Client::new("1234-5678-9012-3456");
let client = Client::new_from_env();  // Read from CODECOV_OWNER_TOKEN
let owner = Owner {
    service: "github".to_string(),
    username: "codecov".to_string(),
};
let repos = client.get_all_repos(&owner).unwrap();
println!("{:?}", repos)

许可证

BSD-3-Clause 协议

依赖项

~4–18MB
~233K SLoC