mirror of
https://github.com/samvallad33/vestige.git
synced 2026-06-30 21:59:39 +02:00
Version bump 2.1.27 -> 2.2.0 across workspace crates + npm packages. v2.2.0 = three coherent value streams: - Retroactive Salience Backfill (Cai 2024 Nature) — memory with hindsight - MCP Tool Consolidation (34 -> 13 advertised tools) - deep_reference engine upgrades (F32 / RRF / claim-contradiction / band-gate) + recall/compose CLI - security & correctness audit-swarm fixes The Black Box / trace-receipt / cloud-sync / launch-UI bundle (PR #98) is a separate coupled feature stream and ships as its own follow-up release. Gates: 1550 tests pass, clippy -D warnings clean, dashboard check + build clean. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
38 lines
758 B
TOML
38 lines
758 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/vestige-core",
|
|
"crates/vestige-mcp",
|
|
"tests/e2e",
|
|
"tests/phase_1",
|
|
]
|
|
exclude = [
|
|
"fastembed-rs",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "2.2.0"
|
|
edition = "2024"
|
|
license = "AGPL-3.0-only"
|
|
repository = "https://github.com/samvallad33/vestige"
|
|
authors = ["Sam Valladares"]
|
|
|
|
[workspace.dependencies]
|
|
# Share deps across workspace
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
tracing = "0.1"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true
|
|
opt-level = "z"
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|