diff options
Diffstat (limited to 'tvg/src')
| -rw-r--r-- | tvg/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvg/src/lib.rs b/tvg/src/lib.rs index 011b5c7..3b585d7 100644 --- a/tvg/src/lib.rs +++ b/tvg/src/lib.rs @@ -1,7 +1,7 @@ use std::io::{self, Read}; use byteorder::{LittleEndian, ReadBytesExt}; -use colors::{Color, ColorTable}; +use colors::ColorTable; use commands::Command; use header::{CoordinateRange, Scale, TvgHeader}; use thiserror::Error; @@ -11,7 +11,7 @@ mod commands; mod header; mod path; -pub use colors::{Rgb565, Rgba16, Rgba8888, RgbaF32}; +pub use colors::{Color, Rgb565, Rgba16, Rgba8888, RgbaF32}; pub use header::SUPPORTED_VERSION; pub struct TvgFile<C: Color> { |
