Initialize repository snapshot

This commit is contained in:
Vault Sovereign
2025-12-27 00:10:32 +00:00
commit 110d644e10
281 changed files with 40331 additions and 0 deletions

31
Cargo.toml Normal file
View File

@@ -0,0 +1,31 @@
[workspace]
members = [
"vaultmesh-core",
"vaultmesh-treasury",
"vaultmesh-identity",
"vaultmesh-mesh",
"vaultmesh-offsec",
"vaultmesh-observability",
"vaultmesh-automation",
"vaultmesh-psi",
"vaultmesh-guardian",
]
resolver = "2"
# Release profile optimizations
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
panic = "abort"
strip = true
# Development profile with some optimizations for faster testing
[profile.dev]
opt-level = 1
# Profile for maximum performance (use with --profile release-max)
[profile.release-max]
inherits = "release"
lto = "fat"
codegen-units = 1