1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-05-22 16:36:05 +02:00
helix/Cargo.toml

27 lines
359 B
INI
Raw Normal View History

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