helix/Cargo.toml

34 lines
541 B
TOML
Raw Normal View History

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