//! Thin binary entry point for the `choreographr` daemon.
//!
//! All of the daemon's logic lives in the `choreo-daemon` library crate; this
//! wrapper exists so that `cargo install choreographr` / `cargo binstall
//! choreographr` produce a `choreographr` executable. The real entry point is
//! [`choreo_daemon::main`].
use MiMalloc;
/// Process-wide allocator (musl tarball builds only): mimalloc's per-thread
/// heaps replace musl's weaker default malloc. Enabled via the `mimalloc`
/// feature (set by scripts/release.sh for the static musl tarball); default
/// builds keep the system allocator. Declared in the root binaries, not the
/// library crates, so crates.io consumers of the libraries stay
/// allocator-agnostic.
static GLOBAL_ALLOC: MiMalloc = MiMalloc;