example_lib/
lib.rs

1pub mod module_a;
2pub mod module_b;
3#[cfg(test)]
4mod tests {
5    #[test]
6    fn it_works() {
7        assert_eq!(2 + 2, 4);
8    }
9}