Initialize repository snapshot
This commit is contained in:
31
Cargo.toml
Normal file
31
Cargo.toml
Normal 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
|
||||
Reference in New Issue
Block a user