1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
// Copyright © 2023 Stephan Kunz #![crate_type = "lib"] #![crate_name = "dimas"] //#![no_panic] #![doc = include_str!("../README.md")] //! ## Public interface //! //! Typically it is sufficient to include the prelude with //! //! ```use dimas::prelude::*;``` #[cfg(doctest)] doc_comment::doctest!("../README.md"); pub mod agent; mod context; pub mod error; // macro reexport pub use dimas_macros::main; // mostly needed stuff pub mod prelude;