2026-01-25 01:31:03 -06:00
|
|
|
[workspace]
|
|
|
|
|
resolver = "2"
|
|
|
|
|
members = [
|
|
|
|
|
"crates/vestige-core",
|
|
|
|
|
"crates/vestige-mcp",
|
|
|
|
|
"tests/e2e",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[workspace.package]
|
2026-02-12 03:19:07 -06:00
|
|
|
version = "1.1.3"
|
|
|
|
|
edition = "2024"
|
2026-01-30 00:55:03 -06:00
|
|
|
license = "AGPL-3.0-only"
|
2026-01-25 01:31:03 -06:00
|
|
|
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
|