Every crate hardcoded version = "0.0.1" while the root colibri package was already 0.11.0. Add a [workspace.package] version = "0.11.0" and switch all crates (and the root package) to version.workspace = true, so the whole workspace is 0.11.0 and the next bump is one line. Internal deps are path-only (no version constraints), so nothing else changes. Verified: cargo metadata resolves; all 13 packages report 0.11.0. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
33 lines
No EOL
1.1 KiB
TOML
33 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"]
|
|
|
|
[workspace.package]
|
|
version = "0.11.0"
|
|
|
|
[package]
|
|
name = "colibri"
|
|
version.workspace = true
|
|
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 |