diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d21523..15a117d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,10 @@ You can find its changes [documented below](#020-2024-12-17). This release has an [MSRV][] of 1.82. +### Changed + +* Don't enable `serde`'s `std` feature when enabling our `std` feature. ([#108][] by @waywardmonkeys][]) + ### Fixed * Make color parsing case insensitive. ([#109][] by [@raphlinus][]) @@ -78,6 +82,7 @@ This is the initial release. [#86]: https://github.com/linebender/color/pull/86 [#92]: https://github.com/linebender/color/pull/92 [#100]: https://github.com/linebender/color/pull/100 +[#108]: https://github.com/linebender/color/pull/108 [#109]: https://github.com/linebender/color/pull/109 [Unreleased]: https://github.com/linebender/color/compare/v0.2.0...HEAD diff --git a/color/Cargo.toml b/color/Cargo.toml index 994f90b..0846e36 100644 --- a/color/Cargo.toml +++ b/color/Cargo.toml @@ -17,7 +17,7 @@ targets = [] [features] default = ["std"] -std = ["serde?/std"] +std = [] libm = ["dep:libm"] bytemuck = ["dep:bytemuck"] serde = ["dep:serde"]