project-template 0.1.8

A template for Rust project
Documentation
1
2
3
4
5
6
7
mod another_mod;

#[cfg(test)]
mod tests {
    #[test]
    fn visibility() { super::another_mod::pub_in_super(); }
}