xbp 10.26.3

XBP is a zero-config build pack that can also interact with proxies, kafka, sockets, synthetic monitors.
Documentation
//! xbp core library
//!
//! modular toolkit for deploying building and configuring modern projects
//! supports rust js node nextjs python expressjs and more
//! provides extensibility scripting and cloud workflow integration
//!
//! architecture
//! - commands cli subcommands as modular rust functions deploy ports logs etc
//! - logging structured async file based logs with per command tracing
//! - config load write validate config supports ssh yaml secrets
//! - strategies project detection deploy logic extensibility for new systems
//! - utils common utility functions version api integration

#[cfg(all(feature = "kafka", windows))]
compile_error!(
    "Feature `kafka` is not supported on Windows for this crate because `rdkafka-sys` may require Unix tools (for example `cp`). Rebuild without `--features kafka`, or use Linux/WSL2 for Kafka-enabled builds."
);

#[allow(dead_code)]
fn __pin_time_dependency() -> time::UtcOffset {
    // Keep the exact `time` pin in the real build graph so `cargo install`
    // does not float transitive actix/sentry dependencies to incompatible
    // `time` releases.
    time::UtcOffset::UTC
}

pub mod api;
pub mod cli;
pub mod commands;
pub mod config;
pub mod data;
pub mod logging;
pub mod openrouter;
pub mod profile;
pub mod project_detector;
pub mod sdk;
pub mod strategies;
pub mod utils;