summaryrefslogtreecommitdiff
path: root/mingling_core/src/lib.rs
blob: bcad91d3090f5b2aa5a1f883204af4d666b5eeae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
//! Mingling Core
//!
//! # Intro
//! This crate is the core implementation of `mingling`, containing the complete logic for command dispatching, execution, and rendering.
//!
//! # Note
//! It is not recommended to use [mingling_core](https://crates.io/crates/mingling_core) directly, as this will lose the code generation functionality of [mingling_macros](https://crates.io/crates/mingling_macros).
//!
//! Recommended to import [mingling](https://crates.io/crates/mingling) to use its features.

mod any;
mod asset;
mod markers;
mod program;
mod renderer;

pub use crate::any::group::*;
pub use crate::any::*;

pub use crate::asset::chain::*;
pub use crate::asset::dispatcher::*;
pub use crate::asset::node::*;
pub use crate::asset::renderer::*;

/// All error types of `Mingling`
pub mod error {
    pub use crate::asset::chain::error::*;
    pub use crate::exec::error::*;
}

pub use crate::program::*;

pub use crate::renderer::render_result::*;

/// All marker types of `Mingling` that serve no practical purpose
pub mod marker {
    pub use crate::markers::group_process::*;
}

/// `Mingling`'s Program initialization system
pub mod setup {
    pub use crate::program::setup::*;
}