From d97137de76e6dbf0879546b02d851e080c5f2c6c Mon Sep 17 00:00:00 2001 From: Akhil Velagapudi <4@4khil.com> Date: Fri, 22 Oct 2021 19:22:31 -0700 Subject: [PATCH] Prepare 2.1.0 release --- .github/workflows/rust.yaml | 2 ++ Cargo.toml | 16 ++++++---------- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index 5ab51a6..452d888 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -19,6 +19,7 @@ jobs: profile: minimal toolchain: stable components: rustfmt, clippy + override: true - uses: actions-rs/cargo@v1 with: command: clippy @@ -41,6 +42,7 @@ jobs: with: profile: minimal toolchain: ${{ matrix.rust }} + override: true - uses: actions-rs/cargo@v1 with: command: check diff --git a/Cargo.toml b/Cargo.toml index a1a4585..b787734 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "crc" -version = "2.0.1-alpha.0" -authors = ["Rui Hu "] +version = "2.1.0" +authors = [ + "Rui Hu ", + "Akhil Velagapudi <4@4khil.com>" +] license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/mrhooray/crc-rs.git" @@ -12,11 +15,4 @@ categories = ["algorithms", "no-std"] edition = "2018" [dependencies] -crc-catalog = "1.1" - -[dev-dependencies] -criterion = "0.3" - -[[bench]] -name = "bench" -harness = false +crc-catalog = "1.1.1"