rust-embedded-community / rust-measurements

Metric, Imperial, and other measurement handling for Rust. Length, Temperature, Weight, and Volume
https://crates.io/crates/measurements
28 stars 10 forks source link

serde requires std #47

Closed jhbruhn closed 2 years ago

jhbruhn commented 2 years ago

Enabling the serde feature pulls in std via a serde default feature. The serdes std feature is not needed here, is it?

Related to #23

eldruin commented 2 years ago

Yes, we should flip the features to have the default be no-std which disables the serde std feature and add an std feature which enables it.