confer-cli 0.8.3

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
# Inject `make ui` (build the web dashboard) into the build-local-artifacts job, right after
# checkout and before `dist build` — so build.rs (read-only) has ui/dist/index.html to embed.
# Path is relative to .github/workflows/; the fragment lives at .github/build-setup.yml (one
# level up) so GitHub doesn't mistake it for a standalone workflow. NOTE: this only takes
# effect on the NEXT `dist generate`/regeneration of release.yml — the same two steps are also
# hand-added directly to release.yml's build-local-artifacts job so it works right now without
# a full regen.
github-build-setup = "../build-setup.yml"

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