Adds ARM (Raspberry Pi) cross-compilation support for harmony_agent and harmony_inventory_agent. - .cargo/config.toml: aarch64-linux-gnu-gcc linker - build/cross-arm.sh: local cross-build script with prereq checks - .gitea/workflows/arm-agents.yaml: CI workflow that builds both agents for aarch64 on tagged releases and uploads them as release assets (same pattern as harmony_inventory_agent already uses) Removes the unused 'harmony' dependency from harmony_agent — it was vestigial (no actual imports) and was the only thing pulling in heavy C deps (libvirt via virt) that blocked ARM builds.
26 lines
602 B
TOML
26 lines
602 B
TOML
[package]
|
|
name = "harmony_agent"
|
|
edition = "2024"
|
|
version.workspace = true
|
|
readme.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
# harmony_cli = { path = "../harmony_cli" }
|
|
harmony_types = { path = "../harmony_types" }
|
|
harmony_macros = { path = "../harmony_macros" }
|
|
cidr = { workspace = true }
|
|
tokio = { workspace = true }
|
|
log = { workspace = true }
|
|
env_logger = { workspace = true }
|
|
async-nats = "0.45.0"
|
|
async-trait = "0.1"
|
|
# url = { workspace = true }
|
|
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
getrandom = "0.3.4"
|
|
|
|
thiserror.workspace = true
|
|
pretty_assertions.workspace = true
|