vestige/Cargo.toml
Sam Valladares 488252d19d release: v2.3.0 — Cognitive Observatory + Zero-Knowledge Sync
Version bumps across all 9 manifests (incl. the mcpb manifest stale at
2.2.0 since v2.2.1) + Cargo.lock + rebuilt embedded dashboard. Full
changelog for the 42 audit fixes (#139/#140/#141), the consolidation
opt-out (#142, thanks @Vrakoss), the WebGPU Cognitive Observatory, and
the zero-knowledge cloud-sync client.

Gates: cargo test 1580/0, clippy clean, svelte-check 937/0/0, build green.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-07-25 21:58:03 +08:00

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.3.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