Skip to content

Commit

Permalink
Merge pull request #3 from kitsuyui/rename-crate
Browse files Browse the repository at this point in the history
Rename crate name
  • Loading branch information
kitsuyui authored Jul 19, 2023
2 parents d8fb441 + daaee45 commit 47aa96f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "rust-codecov"
name = "codecov"
version = "0.1.0"
edition = "2021"
authors = ["Yui Kitsu <kitsuyui+github@kitsuyui.com>"]
description = "Codecov API client for Rust"
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/kitsuyui/rust-codecov"
documentation = "https://docs.rs/rust-codecov"
documentation = "https://docs.rs/codecov"
categories = ["api-bindings"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# rust-codecov

[![Crates.io](https://img.shields.io/crates/d/rust-codecov)](https://crates.io/crates/rust-codecov)
[![Crates.io](https://img.shields.io/crates/d/codecov)](https://crates.io/crates/codecov)
[![codecov](https://codecov.io/gh/kitsuyui/rust-codecov/branch/main/graph/badge.svg?token=0OM9KWFZQC)](https://codecov.io/gh/kitsuyui/rust-codecov)
[![crates.io](https://img.shields.io/crates/v/rust-codecov.svg)](https://crates.io/crates/rust-codecov)
[![crates.io](https://img.shields.io/crates/v/codecov.svg)](https://crates.io/crates/codecov)

## Description

Expand All @@ -12,7 +12,7 @@ https://docs.codecov.com/reference/overview
## Usage

```rust
use rust_codecov::{Client, Owner};
use codecov::{Client, Owner};

// let client = Client::new("1234-5678-9012-3456");
let client = Client::new_from_env(); // Read from CODECOV_OWNER_TOKEN
Expand Down

0 comments on commit 47aa96f

Please sign in to comment.