Version: unify colibri with the Clawdie release version 0.11.0 (matches clawdie-iso ISO_VERSION). Cargo.toml 0.0.1 -> 0.11.0, Cargo.lock refreshed, port DISTVERSION 0.0.1 -> 0.11.0, port README example tag v0.11.0. License: relicense all 12 crates from AGPL-3.0-only to MIT, matching the rest of the project (layered-soul is MIT; nothing was BSD-3). Add a LICENSE file with the same MIT text + holder (clawdie, 2026). Port: LICENSE=MIT + LICENSE_FILE. Validation: CARGO_CRATES drift check green (346); markdown gate clean; no AGPL references remain. Edition stays 2021 (2024 migration is a separate tested task). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
30 lines
No EOL
1.1 KiB
TOML
30 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/colibri-vault", "crates/clawdie"]
|
|
|
|
[package]
|
|
name = "colibri"
|
|
version = "0.11.0"
|
|
edition = "2021"
|
|
description = "Clawdie Colibri control plane — cross-platform (FreeBSD/Linux) Rust core"
|
|
license = "MIT"
|
|
|
|
[[bin]]
|
|
name = "colibri-probe"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "colibri-runtime-inventory"
|
|
path = "src/bin/runtime_inventory.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 |