floe-core 0.3.6

Core library for Floe, a YAML-driven technical ingestion tool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod parse;
mod types;
mod validate;

pub use parse::{parse_profile, parse_profile_from_str};
pub use types::{
    ProfileConfig, ProfileExecution, ProfileMetadata, ProfileRunner, ProfileValidation,
    PROFILE_API_VERSION, PROFILE_KIND,
};
pub use validate::{
    detect_malformed_placeholder, detect_unresolved_placeholders, validate_merged_vars,
    validate_profile,
};