1 2 3 4 5 6 7 8 9 10 11 12 13
#![doc = include_str!("../README.md")] //! #![cfg_attr(docsrs, feature(doc_cfg))] #![warn(missing_docs, clippy::unimplemented)] pub mod engine; pub mod wire; mod module; pub use module::Module; pub use engine::Engine;