machinery_api/
lib.rs

1#![allow(non_upper_case_globals)]
2#![allow(non_camel_case_types)]
3#![allow(non_snake_case)]
4#![allow(deref_nullptr)]
5#![allow(clippy::all)]
6
7pub mod foundation;
8pub mod plugins;
9pub mod the_machinery;
10
11use const_cstr::ConstCStr;
12
13/// Utility marker interface for API types to get static information about an API.
14pub trait Api {
15    const NAME: ConstCStr;
16    const VERSION: foundation::VersionT;
17}