rsconstruct 0.9.85

Rust based fast build system
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Plugin registries.
//!
//! rsconstruct has two independent plugin registries collected via the `inventory`
//! crate at link time:
//!
//! - [`processor`] — [`ProcessorPlugin`](processor::ProcessorPlugin) entries for
//!   every built-in processor (checkers, generators, creators, mass-generators).
//! - [`analyzer`] — [`AnalyzerPlugin`](analyzer::AnalyzerPlugin) entries for
//!   every dependency analyzer.
//!
//! Both submodules are re-exported here so callers can keep using
//! `crate::registries::X` without caring which registry `X` belongs to.

pub mod analyzer;
pub mod processor;

pub use analyzer::*;
pub use processor::*;