From c8889b2ae7f099eb3a43fc043ac43df90a0b6e12 Mon Sep 17 00:00:00 2001 From: Igor Aleksanov Date: Sun, 18 Apr 2021 21:31:48 +0300 Subject: [PATCH 1/2] Fix copy-paste --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a37352b..046397e 100644 --- a/README.md +++ b/README.md @@ -4,9 +4,9 @@ [![CI](https://github.com/popzxc/trait-set/workflows/CI/badge.svg)](https://github.com/popzxc/trait-set/actions) **Project info:** -[![Docs.rs](https://docs.rs/trait-set/badge.svg)](https://docs.rs/stdext) -[![Latest Version](https://img.shields.io/crates/v/trait-set.svg)](https://crates.io/crates/stdext) -[![License](https://img.shields.io/github/license/popzxc/trait-set.svg)](https://github.com/popzxc/stdext-rs) +[![Docs.rs](https://docs.rs/trait-set/badge.svg)](https://docs.rs/trait-set) +[![Latest Version](https://img.shields.io/crates/v/trait-set.svg)](https://crates.io/crates/trait-set) +[![License](https://img.shields.io/github/license/popzxc/trait-set.svg)](https://github.com/popzxc/trait-set) ![Rust 1.50+ required](https://img.shields.io/badge/rust-1.50+-blue.svg?label=Rust) Support for trait aliases on stable Rust. @@ -79,4 +79,4 @@ Feel free to submit a PR! ## LICENSE -`stdext` library is licensed under the MIT License. See [LICENSE](LICENSE) for details. +`trait-set` library is licensed under the MIT License. See [LICENSE](LICENSE) for details. From 1dee5441d09135137a4a47e391336ffcbe9f83c6 Mon Sep 17 00:00:00 2001 From: Igor Aleksanov Date: Sun, 18 Apr 2021 21:38:11 +0300 Subject: [PATCH 2/2] Simplify github workflow --- .github/workflows/ci.yml | 23 +++-------------------- 1 file changed, 3 insertions(+), 20 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd5bb68..9c9f972 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,13 +14,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v2 - - name: Install rust - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - components: rustfmt - profile: minimal - override: true + - run: rustup component add clippy - name: Run rustfmt uses: actions-rs/cargo@v1 @@ -36,13 +30,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v2 - - name: Install rust - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - components: clippy - profile: minimal - override: true + - run: rustup component add clippy - name: Run clippy uses: actions-rs/clippy-check@v1 @@ -82,12 +70,7 @@ jobs: - name: Checkout sources uses: actions/checkout@v2 - - name: Install rust - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - profile: minimal - override: true + - run: rustup component add clippy - name: Build uses: actions-rs/cargo@v1