2020-05-20 13:14:51 +04:00
|
|
|
[workspace]
|
|
|
|
members = [
|
|
|
|
"helix-core",
|
2020-09-21 13:24:16 +04:00
|
|
|
"helix-view",
|
2020-05-20 13:14:51 +04:00
|
|
|
"helix-term",
|
2021-05-09 12:52:55 +04:00
|
|
|
"helix-tui",
|
2020-10-15 18:32:07 +04:00
|
|
|
"helix-lsp",
|
2023-08-30 08:26:21 +04:00
|
|
|
"helix-event",
|
2021-08-25 09:40:53 +04:00
|
|
|
"helix-dap",
|
2022-02-16 17:57:20 +04:00
|
|
|
"helix-loader",
|
2022-12-01 12:35:23 +04:00
|
|
|
"helix-vcs",
|
2023-02-07 12:18:44 +04:00
|
|
|
"helix-parsec",
|
2021-11-17 17:30:11 +04:00
|
|
|
"xtask",
|
2020-05-20 13:14:51 +04:00
|
|
|
]
|
2020-09-12 12:44:57 +04:00
|
|
|
|
2022-03-07 09:41:03 +04:00
|
|
|
default-members = [
|
|
|
|
"helix-term"
|
|
|
|
]
|
|
|
|
|
2021-11-15 09:36:38 +04:00
|
|
|
[profile.release]
|
|
|
|
lto = "thin"
|
2022-01-12 17:27:44 +04:00
|
|
|
# debug = true
|
2022-02-25 12:24:20 +04:00
|
|
|
|
|
|
|
[profile.opt]
|
|
|
|
inherits = "release"
|
|
|
|
lto = "fat"
|
|
|
|
codegen-units = 1
|
|
|
|
# strip = "debuginfo" # TODO: or strip = true
|
|
|
|
opt-level = 3
|
2023-02-05 01:20:23 +04:00
|
|
|
|
|
|
|
[profile.integration]
|
|
|
|
inherits = "test"
|
|
|
|
package.helix-core.opt-level = 2
|
|
|
|
package.helix-tui.opt-level = 2
|
|
|
|
package.helix-term.opt-level = 2
|
2023-07-27 06:50:40 +04:00
|
|
|
|
|
|
|
[workspace.dependencies]
|
2023-08-19 19:21:18 +04:00
|
|
|
tree-sitter = { version = "0.20", git = "https://github.com/tree-sitter/tree-sitter", rev = "ab09ae20d640711174b8da8a654f6b3dec93da1a" }
|
2023-08-30 08:26:21 +04:00
|
|
|
nucleo = "0.2.0"
|