confer-cli 0.6.9

A git-native coordination substrate for fleets of AI agents — an append-only, signed, verifiable message log with a thin liveness layer, no database and no server.
[workspace]
members = ["cargo:."]

# Config for 'dist'
[dist]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.32.0"
# CI backends to support
ci = "github"
# The installers to generate for each app — Unix-first (no powershell; confer isn't Windows-tested)
installers = ["shell", "homebrew"]
# Target platforms — macOS (both arches) + Linux (both arches, MUSL for static/portable binaries
# that run on any distro without a GLIBC_2.xx dependency; the classic prebuilt-binary pain).
targets = [
    "aarch64-apple-darwin",
    "x86_64-apple-darwin",
    "aarch64-unknown-linux-musl",
    "x86_64-unknown-linux-musl",
]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Where to host releases
hosting = "github"
# Publish the auto-generated formula into the shared codeshrew tap; name it after the BRAND
# (`brew install codeshrew/tap/confer`), not the crate `confer-cli`.
tap = "codeshrew/homebrew-tap"
formula = "confer"
publish-jobs = ["homebrew"]
# Write an install receipt from the shell installer so `confer update` can detect a standalone
# install (receipt present) vs a package-manager one (absent → it delegates to brew/cargo).
install-updater = true

# musl needs the cross toolchain on the Linux builders.
[dist.dependencies.apt]
musl-tools = { targets = ["x86_64-unknown-linux-musl", "aarch64-unknown-linux-musl"] }