mirror of
https://github.com/localsend/localsend.git
synced 2026-08-07 07:14:52 +00:00
23 lines
534 B
TOML
23 lines
534 B
TOML
[workspace]
|
|
resolver = "3"
|
|
members = [
|
|
"cli",
|
|
"packages/core",
|
|
"packages/localsend_isolates/rust",
|
|
"server",
|
|
]
|
|
|
|
# Profiles are only honored in the workspace root manifest.
|
|
|
|
# Full debuginfo dominates target/ size; line tables keep backtraces usable.
|
|
[profile.dev]
|
|
debug = "line-tables-only"
|
|
|
|
# RSA key generation is bignum-heavy and takes ~10x longer unoptimized;
|
|
# keep the crypto crates optimized in dev so tests stay fast.
|
|
[profile.dev.package.rsa]
|
|
opt-level = 2
|
|
|
|
[profile.dev.package.num-bigint-dig]
|
|
opt-level = 2
|