mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 10:02:38 +03:00
39 lines
751 B
TOML
39 lines
751 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"compiler/region",
|
|
"compiler/collections",
|
|
"compiler/module",
|
|
"compiler/parse",
|
|
"compiler/can",
|
|
"compiler/problem",
|
|
"compiler/types",
|
|
"compiler/builtins",
|
|
"compiler/constrain",
|
|
"compiler/unify",
|
|
"compiler/solve",
|
|
"compiler/reporting",
|
|
"compiler/fmt",
|
|
"compiler/mono",
|
|
"compiler/load",
|
|
"compiler/gen",
|
|
"compiler/gen_dev",
|
|
"compiler/build",
|
|
"compiler/arena_pool",
|
|
"vendor/ena",
|
|
"vendor/pathfinding",
|
|
"vendor/pretty",
|
|
"editor",
|
|
"cli",
|
|
"roc_std",
|
|
"docs"
|
|
]
|
|
|
|
# Optimizations based on https://deterministic.space/high-performance-rust.html
|
|
[profile.release]
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
# debug = true # enable when profiling
|
|
|
|
|