hydra_common/lib.rs
1#![doc = include_str!("spec.md")]
2
3/// The crate version, taken from `Cargo.toml` at compile time.
4pub const HYDRA_COMMON_VERSION: &str = env!("CARGO_PKG_VERSION");
5
6mod identity;
7mod report;
8
9pub use identity::{
10 engine_by_key, EngineDescriptor, EngineStatus, ImportFormat, UnknownEngineError, ENGINES,
11};
12pub use report::{
13 BlockDescriptor, BlockError, Chart, ChartData, Column, Fragment, FragmentItem, KeyValue,
14 LineSeries, Table, Value, ValueKind,
15};