diff options
author | cc <cc@localhost> | 2025-08-20 22:23:34 -0700 |
---|---|---|
committer | cc <cc@localhost> | 2025-08-20 22:23:49 -0700 |
commit | 00e05ac35b85fdf0e7eb5f5db9db4b0a563fa14d (patch) | |
tree | b3b203070d29821e855be4acfe9cfc95c657d002 /src/tiff.rs | |
parent | cf4b76823629e10d79a6a848a6ffaa72d494811d (diff) |
Externalize Label Structure
Diffstat (limited to 'src/tiff.rs')
-rw-r--r-- | src/tiff.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tiff.rs b/src/tiff.rs index d223961..88acbea 100644 --- a/src/tiff.rs +++ b/src/tiff.rs @@ -1,7 +1,7 @@ use std::os::raw::{c_char, c_uint, c_void, c_longlong, c_long}; use std::ffi::CString; -use crate::label_formats::LargeLabelFormat; +use label_toolkit::LargeLabelFormat; /// # TIFF Internal Structure |