diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb01e5f..bad1491 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 f50aae5..357e8a1 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)