kornelski / rust-rgb

struct RGB for sharing pixels between crates
https://lib.rs/rgb
MIT License
98 stars 19 forks source link

enable the use of Serde in no_std environments #38

Closed spookyvision closed 3 years ago

spookyvision commented 3 years ago

Serde by default enables the std feature. Declaring default-features = false fixes this, enabling no_std usage.

kornelski commented 3 years ago

Thanks