rust-elm 0.4.0

Elm Architecture for Rust: composable reducers, pure effects, async runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Tokio-backed live runtime: bus, store, effect interpreter, subscriptions.

mod config;
pub(crate) mod dispatch;
mod engine;
pub(crate) mod interpreter;
pub mod store;
pub mod subscription;

pub use config::RuntimeConfig;
pub use engine::Runtime;