greentic-runner-dev 0.6.0-dev.24993399840

Greentic runner binaries and re-exported host/new-runner APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Build metadata and runtime capability surface for `greentic-runner info`.
//!
//! - [`report`] defines the [`InfoReport`] struct and the `collect()` function
//!   that assembles it from compile-time env vars and hand-maintained interface
//!   lists.
//! - [`human`] renders an [`InfoReport`] as a concise human-readable string.

pub mod human;
pub mod report;

#[allow(unused_imports)]
pub use report::{InfoReport, collect};