New crates/clawdie binary. Discovers a host's ZFS layout and provisions the clawdie service, cross-platform via a Platform backend (FreeBSD rc.d + native ZFS; Linux systemd + ZFS-on-Linux). - discover: read-only OS + pool/dataset inspection - plan: render the ZFS layout + service-install steps (dry-run) - apply: executes the plan, and only with --yes (dry-run otherwise) apply writes to disk only with --yes. Discovery + plan logic is unit-tested (7); the disk-touching path must be validated on real hosts. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
34 lines
No EOL
1.1 KiB
TOML
34 lines
No EOL
1.1 KiB
TOML
[workspace]
|
|
members = ["crates/colibri-contracts", "crates/colibri-deepseek", "crates/colibri-runtime", "crates/colibri-glasspane", "crates/colibri-daemon", "crates/colibri-client", "crates/colibri-glasspane-tui", "crates/colibri-store", "crates/colibri-skills", "crates/colibri-mcp", "crates/clawdie"]
|
|
|
|
[package]
|
|
name = "colibri"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
description = "Clawdie Colibri control plane — cross-platform (FreeBSD/Linux) Rust core"
|
|
license = "AGPL-3.0-only"
|
|
|
|
[[bin]]
|
|
name = "colibri-probe"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "colibri-runtime-inventory"
|
|
path = "src/bin/runtime_inventory.rs"
|
|
|
|
[[bin]]
|
|
name = "proof-gate-tracker"
|
|
path = "tools/proof-gate-tracker.rs"
|
|
|
|
[dependencies]
|
|
# Probe logic lives in colibri-deepseek (which pulls reqwest/rustls, chrono…).
|
|
colibri-deepseek = { path = "crates/colibri-deepseek" }
|
|
dotenvy = "0.15"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
|
|
# Lean release artifacts: strip symbols so the staged ISO binaries stay small
|
|
# without a manual strip step.
|
|
[profile.release]
|
|
strip = true |