2020-03-06 01:45:48 +03:00
|
|
|
[workspace]
|
2019-01-28 01:39:45 +03:00
|
|
|
|
2020-03-06 01:45:48 +03:00
|
|
|
members = [
|
|
|
|
"compiler/region",
|
|
|
|
"compiler/collections",
|
|
|
|
"compiler/module",
|
2020-03-06 04:58:12 +03:00
|
|
|
"compiler/parse",
|
|
|
|
"compiler/can",
|
2020-03-06 08:06:24 +03:00
|
|
|
"compiler/problem",
|
2020-03-06 04:58:12 +03:00
|
|
|
"compiler/types",
|
2020-03-06 08:06:24 +03:00
|
|
|
"compiler/builtins",
|
|
|
|
"compiler/constrain",
|
2020-03-06 09:42:53 +03:00
|
|
|
"compiler/unify",
|
|
|
|
"compiler/solve",
|
2020-03-06 10:06:18 +03:00
|
|
|
"compiler/reporting",
|
2020-03-07 02:14:23 +03:00
|
|
|
"compiler/fmt",
|
2020-03-07 02:15:06 +03:00
|
|
|
"compiler/mono",
|
2020-03-07 02:15:23 +03:00
|
|
|
"compiler/load",
|
2020-03-07 02:15:38 +03:00
|
|
|
"compiler/gen",
|
2020-11-15 05:43:02 +03:00
|
|
|
"compiler/gen_dev",
|
2020-05-14 00:03:50 +03:00
|
|
|
"compiler/build",
|
2020-08-01 22:42:03 +03:00
|
|
|
"compiler/arena_pool",
|
2020-03-06 04:58:12 +03:00
|
|
|
"vendor/ena",
|
2020-03-31 02:31:42 +03:00
|
|
|
"vendor/pathfinding",
|
2020-04-04 02:40:17 +03:00
|
|
|
"vendor/pretty",
|
2020-08-03 05:04:31 +03:00
|
|
|
"editor",
|
2020-09-14 05:35:28 +03:00
|
|
|
"cli",
|
2020-09-30 16:01:16 +03:00
|
|
|
"roc_std",
|
2020-09-14 05:35:28 +03:00
|
|
|
"docs"
|
2020-03-06 01:45:48 +03:00
|
|
|
]
|
2020-03-31 02:31:42 +03:00
|
|
|
|
2020-04-02 04:16:14 +03:00
|
|
|
# Optimizations based on https://deterministic.space/high-performance-rust.html
|
|
|
|
[profile.release]
|
|
|
|
lto = "fat"
|
|
|
|
codegen-units = 1
|
2021-01-20 13:47:32 +03:00
|
|
|
# debug = true # enable when profiling
|
2021-01-16 21:33:23 +03:00
|
|
|
|
|
|
|
|