diff --git a/CHANGELOG.md b/CHANGELOG.md index 652f8af..b00c805 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][]) + ## [0.2.0][] (2024-12-17) This release has an [MSRV][] of 1.82. @@ -74,6 +78,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 [Unreleased]: https://github.com/linebender/color/compare/v0.2.0...HEAD [0.2.0]: https://github.com/linebender/color/releases/tag/v0.2.0 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"]