diff options
author | cc <cc@localhost> | 2025-08-20 19:10:19 -0700 |
---|---|---|
committer | cc <cc@localhost> | 2025-08-20 19:10:19 -0700 |
commit | 7490dbae2c2c2f3427cc5a702ce248ffae88ce08 (patch) | |
tree | 82641cca3fbef804c43e89dcb7f630b1a20e1197 | |
parent | ab88d233dcb23a56cb76929a2c804a8dd4198c13 (diff) |
Public declarations
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1,7 +1,5 @@ pub mod tiff; -mod binfile; - -pub use binfile::dump_u32_vec; +pub mod binfile; pub const TEST_IMAGE_PATH: &str = "../test.tif"; pub const TEST_OUTPUT_PATH: &str = "../test.bin"; @@ -82,7 +80,7 @@ mod tests { fn tiff_data_dump_test() { tiff::ignore_warnings(); if let Some(standard_format) = tiff::as_standard_format(TEST_IMAGE_PATH) { - dump_u32_vec(TEST_OUTPUT_PATH, standard_format).expect("File output error"); + binfile::dump_u32_vec(TEST_OUTPUT_PATH, standard_format).expect("File output error"); } else { assert!(false); } |