dimas 0.5.1

dimas - a framework for Distributed Multi Agent Systems
Documentation
// 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;