1 2 3 4 5 6 7 8 9 10
//! Constructs that are used to generate hardware designs, that are not //! part of the specification (yet). pub mod library; pub mod project; pub mod streamlet; pub use library::Library; pub use project::Project; pub use streamlet::{Interface, Mode, Streamlet};