From 776117a29a5c4b3db87da680a05ec1bd250ae285 Mon Sep 17 00:00:00 2001 From: Moritz Borcherding Date: Fri, 6 Sep 2024 17:33:30 +0200 Subject: [PATCH] changelog and fix CI to exclude rustc-dep-of-std from check feature powerset --- .github/workflows/ci.yml | 6 +++--- Changelog.md | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb01e5f6..bad1491b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,9 +16,9 @@ jobs: uses: taiki-e/install-action@v2 with: tool: cargo-hack - - run: cargo hack check --feature-powerset - - run: cargo hack clippy --feature-powerset - - run: cargo hack test --feature-powerset + - run: cargo hack check --feature-powerset --exclude-features rustc-dep-of-std + - run: cargo hack clippy --feature-powerset --exclude-features rustc-dep-of-std + - run: cargo hack test --feature-powerset --exclude-features rustc-dep-of-std clippy-nightly: name: clippy nightly diff --git a/Changelog.md b/Changelog.md index f50aae53..357e8a1a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -21,3 +21,6 @@ This document records the changes made between versions, starting with version 0 * Fix for drain_to functions into limited targets (https://github.com/michaelkirk) # After 0.7.1 + +* Remove byteorder dependency (https://github.com/workingjubilee) +* Preparations to become a std dependency (https://github.com/workingjubilee)