src: use core instead of std in some places, aiming for no_std compat

This commit is contained in:
2024-12-01 16:17:51 +01:00
parent 0f73b42818
commit 36aead9762
6 changed files with 15 additions and 15 deletions

View File

@ -1,5 +1,5 @@
use num::PrimInt;
use std::ops::BitOr;
use core::ops::BitOr;
use rgb::Rgb;