//! `stage-source` — emit a `git archive` source tarball and accompanying SBOMs.
//!
//! The crate is organised as:
//! - [`archive`] — `git archive` invocation and extra-files staging.
//! - [`sbom`] — Cargo.lock parsing plus CycloneDX / SPDX renderers.
//! - [`run`] — the [`SourceStage`] orchestrator that drives both halves.
pub use SourceStage;
pub use ;
// `SourceArchiveInputs` and `create_source_archive` are crate-internal helpers
// that `tests.rs` reaches via `crate::archive::*` directly; no re-export
// needed.