battery-pack 0.4.7

Curated crate bundles with docs, templates, and agentic skills
Documentation
//! battery-pack: Framework for building and using battery packs.
//!
//! Battery packs are curated collections of crates that work well together.
//! The CLI (`cargo bp`) syncs real dependencies into your Cargo.toml,
//! and this library provides build-time documentation generation and
//! drift validation.
//!
//! # For Battery Pack Authors
//!
//! Your `build.rs` generates documentation:
//!
//! ```rust,ignore
//! fn main() {
//!     battery_pack::build::generate_docs().unwrap();
//! }
//! ```
//!
//! Your `lib.rs` includes the generated docs:
//!
//! ```rust,ignore
//! #![doc = include_str!(concat!(env!("OUT_DIR"), "/docs.md"))]
//! ```

pub use bphelper_manifest::{BatteryPackSpec, CrateSpec, DepKind};

/// Build-time documentation generation.
///
/// Use from your battery pack's `build.rs`:
///
/// ```rust,ignore
/// fn main() {
///     battery_pack::build::generate_docs().unwrap();
/// }
/// ```
///
/// See the [docgen spec](https://battery-pack-rs.github.io/battery-pack/spec/docgen.html)
/// for details on templates and helpers.
pub mod build {
    pub use bphelper_build::{
        CrateEntry, DocsContext, Error, FeatureEntry, PackageInfo, build_context, generate_docs,
        render_docs,
    };
}

/// Validate that the calling crate's dependencies match a battery pack's specs.
///
/// Call this from your battery pack's `validate()` function, passing
/// the embedded manifest string. This reads the user's Cargo.toml via
/// the runtime `CARGO_MANIFEST_DIR` env var (which, in build.rs, points
/// to the user's crate) and compares against the battery pack specs.
///
/// Emits `cargo:warning` messages for any drift. Never fails the build.
pub fn validate(self_manifest: &str) {
    let _bp_spec = match bphelper_manifest::parse_battery_pack(self_manifest) {
        Ok(spec) => spec,
        Err(e) => {
            println!("cargo:warning=battery-pack: failed to parse battery pack manifest: {e}");
            return;
        }
    };

    let user_toml_path = match std::env::var("CARGO_MANIFEST_DIR") {
        Ok(dir) => format!("{dir}/Cargo.toml"),
        Err(_) => {
            println!("cargo:warning=battery-pack: CARGO_MANIFEST_DIR not set, skipping validation");
            return;
        }
    };

    // TODO: implement drift detection against user's Cargo.toml
    // For now, just ensure we rerun when the user's manifest changes.
    println!("cargo:rerun-if-changed={user_toml_path}");
}

/// Test utilities for battery pack authors.
///
/// In your `src/lib.rs`:
///
/// ```rust,ignore
/// #[cfg(test)]
/// mod tests {
///     #[test]
///     fn validate_templates() {
///         battery_pack::testing::validate_templates(env!("CARGO_MANIFEST_DIR")).unwrap();
///     }
/// }
/// ```
pub mod testing {
    pub use bphelper_cli::validate_templates;
}

#[cfg(test)]
mod tests {
    #[test]
    fn validate_templates() {
        battery_pack::testing::validate_templates(env!("CARGO_MANIFEST_DIR")).unwrap();
    }
}