In a Rust project there is a module with utilities to support testing, packed in a module test_utils:
#[cfg(test)]
pub mod test_utils;
Is there a way to make cargo doc generate also the documentation for test_utils module and the things inside?

