roc/Cargo.toml

35 lines
714 B
TOML
Raw Normal View History

[workspace]
2019-01-28 01:39:45 +03:00
members = [
"compiler/region",
"compiler/collections",
"compiler/module",
"compiler/parse",
"compiler/can",
"compiler/problem",
"compiler/types",
"compiler/uniq",
"compiler/builtins",
2020-04-01 04:15:13 +03:00
"compiler/builtins/bitcode",
"compiler/constrain",
"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-05-14 00:03:50 +03:00
"compiler/build",
2020-08-01 22:42:03 +03:00
"compiler/arena_pool",
"vendor/ena",
2020-03-31 02:31:42 +03:00
"vendor/pathfinding",
2020-04-04 02:40:17 +03:00
"vendor/pretty",
2020-07-30 06:40:12 +03:00
"editor"
# "cli"
]
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