diff options
author | cc <cc@localhost> | 2025-08-28 02:13:14 -0700 |
---|---|---|
committer | cc <cc@localhost> | 2025-08-28 02:13:58 -0700 |
commit | f3d196cf4fb5501f9f5af4af3062ebdc7b703a82 (patch) | |
tree | b97936e4e5c2570336cf4114f59c74a2f5b5abeb | |
parent | d411b9e6a2b6c185921e2479ba5cd6e2010d5473 (diff) |
Expose label format to outside crates;
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ mod label_format; pub mod binfile; -use crate::label_format::{LabelFormat,LabelU16}; +pub use crate::label_format::{LabelFormat,LabelU16}; pub(crate) fn flood<T: LabelU16 + PartialEq + Copy, R: LabelU16 + PartialEq + Copy>(source: &LabelFormat<T>, destination: &mut Vec<R>, x: usize, y: usize, |