colibri/Cargo.toml
Sam & Claude 1f2377d4dd
Some checks failed
CI / markdown (pull_request) Has been cancelled
CI / rust (pull_request) Has been cancelled
cleanup: drop the experimental clawdie mini-binary
The `clawdie` crate (Telegram+DeepSeek mini-agent over the control-plane core)
was an experimental operator-lane candidate. Per the agent-harness
consolidation, the live USB runs colibri_daemon + the zot agent, and the
deployed `service clawdie` is a reserved name, not this binary — so the
mini-binary is dead weight. Remove it and its now-orphaned docs.

- delete crates/clawdie (leaf crate; nothing depended on it)
- delete packaging/freebsd/clawdie.in (its rc.d candidate)
- delete docs/CLAWDIE-AGENT-WIKI.md + docs/CLAWDIE-BUILD.md (only described it)
- drop it from workspace members + Cargo.lock; tidy the strip-profile comment
- README: 11 → 10 crates, remove the clawdie row
- COLIBRI-TOKENOMICS-TRIFECTA: drop the stale clawdie-lane scope note

No "relay" existed in this repo (already gone). zot is untouched. The Clawdie
brand, the clawdie operator user, and the reserved deployed `service clawdie`
name are unaffected — this only removes the experimental Rust mini-binary.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-13 19:19:07 +02:00

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"]
[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