helix/Cargo.toml

30 lines
503 B
TOML
Raw Normal View History

2020-05-20 12:14:51 +03:00
[workspace]
members = [
"helix-core",
"helix-view",
2020-05-20 12:14:51 +03:00
"helix-term",
"helix-tui",
"helix-syntax",
2020-10-15 17:32:07 +03:00
"helix-lsp",
2021-08-25 08:40:53 +03:00
"helix-dap",
2021-11-17 16:30:11 +03:00
"xtask",
2020-05-20 12:14:51 +03:00
]
2020-09-12 11:44:57 +03:00
# Build helix-syntax in release mode to make the code path faster in development.
2020-09-17 08:57:49 +03:00
# [profile.dev.package."helix-syntax"]
# opt-level = 3
[profile.dev]
split-debuginfo = "unpacked"
[profile.release]
lto = "thin"
# debug = true
2022-02-25 11:24:20 +03:00
[profile.opt]
inherits = "release"
lto = "fat"
codegen-units = 1
# strip = "debuginfo" # TODO: or strip = true
opt-level = 3