Section II - library

lib.rs

Since we didn't declare any new external dependencies in the Cargo.toml file, we don't have any new declarations in the lib.rs file. However, we do need to add the processor module to our library, we declare it at the bottom of our src/lib.rs file, (after the sourcing module).

pub mod processor;

Last updated