gloc 0.1.0

A universal business logic architecture for Rust, inspired by the Bloc/Cubit pattern from Flutter. Includes core traits and the #[cubit] macro.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # gloc
//!
//! The one-stop crate for GLOC — re-exports everything from `gloc-core`
//! and `gloc-macro` so users only need a single dependency.
//!
//! ```toml
//! [dependencies]
//! gloc = "0.1"
//! ```
//!
//! ```rust,ignore
//! use gloc::{cubit, Cubit, State};
//! ```

pub use gloc_core::*;
pub use gloc_macro::*;