continued progress on aztec, no pass

This commit is contained in:
Henry Schimke
2022-09-23 17:09:46 -05:00
parent 96d42c23a6
commit fb08ee0e34
19 changed files with 2379 additions and 1624 deletions

View File

@@ -1,13 +1,18 @@
mod AztecDetectorResult;
mod aztec_reader;
mod aztec_writer;
pub mod decoder;
pub mod detector;
pub mod encoder;
pub use aztec_reader::*;
pub use aztec_writer::*;
#[cfg(test)]
mod DecoderTest;
// #[cfg(test)]
// mod EncoderTest;
// #[cfg(test)]
// mod DetectorTest;
#[cfg(test)]
mod EncoderTest;
#[cfg(test)]
mod DetectorTest;
mod shared_test_methods;