helix/Cargo.toml

30 lines
403 B
TOML
Raw Normal View History

2020-05-20 17:14:51 +08:00
[workspace]
members = [
"helix-core",
"helix-view",
2020-05-20 17:14:51 +08:00
"helix-term",
"helix-tui",
2020-10-15 22:32:07 +08:00
"helix-lsp",
2021-08-25 13:40:53 +08:00
"helix-dap",
"helix-loader",
2021-11-17 21:30:11 +08:00
"xtask",
2020-05-20 17:14:51 +08:00
]
2020-09-12 16:44:57 +08:00
2022-03-07 13:41:03 +08:00
default-members = [
"helix-term"
]
[profile.dev]
split-debuginfo = "unpacked"
[profile.release]
lto = "thin"
# debug = true
2022-02-25 16:24:20 +08:00
[profile.opt]
inherits = "release"
lto = "fat"
codegen-units = 1
# strip = "debuginfo" # TODO: or strip = true
opt-level = 3