Fixes compile error caused by Flag without serde

If the serde feature isn't enabled then Flag doesn't exist and the crate
doesn't compile successfully
This commit is contained in:
xd009642
2021-07-16 16:31:24 +01:00
parent 4a5157c5f0
commit 71870baded
+1
View File
@@ -1,4 +1,5 @@
pub mod flag;
#[cfg(feature = "serde")]
pub use self::flag::Flags;
pub mod dither;