my_lib/stack/
mod.rs

1// src/stack/mod.rs
2
3mod stack;
4
5pub use stack::Stack;