2023-01-07 19:47:04 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"crates/compiler",
|
|
|
|
"crates/include_sass",
|
|
|
|
"crates/lib",
|
|
|
|
]
|
2020-05-02 12:12:19 -04:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
debug = true
|
|
|
|
panic = "abort"
|
2023-01-06 10:54:34 +00:00
|
|
|
lto = true
|
|
|
|
codegen-units = 1
|
2023-01-17 07:07:20 +01:00
|
|
|
|
|
|
|
[profile.small]
|
|
|
|
inherits = 'release'
|
|
|
|
opt-level = 'z' # Optimize for size
|
|
|
|
lto = true # Enable link-time optimization
|
|
|
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations
|
|
|
|
panic = 'abort' # Abort on panic
|
|
|
|
strip = true # Strip symbols from binary*
|