boxferry_compose/lib.rs
1//! Maps explicit `ComposeLens` native models into `BoxFerry`'s neutral application model.
2//!
3//! The adapter does not read files, process environment variables, or guess active Compose
4//! profiles. Callers parse and process Compose input with `ComposeLens`, provide identities for
5//! each contributing source, and attach a [`compose_lens::profiles::ProfileSelection`] whenever a
6//! merged project contains profiled services.
7
8mod export;
9mod import;
10mod source;
11
12pub use export::{
13 COMPOSE_SPECIFICATION_PROFILE_REVISION, COMPOSE_SPECIFICATION_TARGET, ComposeExporter, ComposeRuntime,
14 DOCKER_COMPOSE_TARGET, PODMAN_COMPOSE_TARGET,
15};
16pub use import::ComposeImporter;
17pub use source::{CanonicalComposeDocument, ComposeCanonicalization, ComposeFindingStage, ComposeSource};
18
19/// The native Compose library consumed by this adapter.
20pub use compose_lens;