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::{ComposeExporter, ComposeRuntime, DOCKER_COMPOSE_TARGET, PODMAN_COMPOSE_TARGET};
13pub use import::ComposeImporter;
14pub use source::ComposeSource;
15
16/// The native Compose library consumed by this adapter.
17pub use compose_lens;