openlatch-client 0.1.7

The open-source security layer for AI agents — client forwarder
# `cross` configuration for aarch64-unknown-linux-gnu builds used by the
# release pipeline. The default cross image does not include
# `libdbus-1-dev` for the target architecture, which libdbus-sys (pulled
# transitively via keyring → secret-service) needs to locate `dbus-1.pc`.
# The `pre-build` hook below installs it inside the container before
# `cargo build` runs.
#
# `env.passthrough` forwards the two secrets baked into the release
# binary by build.rs so the Docker-isolated build can see them.

[target.aarch64-unknown-linux-gnu]
pre-build = [
    "dpkg --add-architecture $CROSS_DEB_ARCH",
    "apt-get update && apt-get --assume-yes install libdbus-1-dev:$CROSS_DEB_ARCH",
]

[build.env]
passthrough = [
    "OPENLATCH_POSTHOG_KEY",
    "OPENLATCH_SENTRY_DSN",
]