2020-05-20 12:14:51 +03:00
|
|
|
[workspace]
|
2023-11-27 15:24:57 +03:00
|
|
|
resolver = "2"
|
2020-05-20 12:14:51 +03:00
|
|
|
members = [
|
|
|
|
"helix-core",
|
2020-09-21 12:24:16 +03:00
|
|
|
"helix-view",
|
2020-05-20 12:14:51 +03:00
|
|
|
"helix-term",
|
2021-05-09 11:52:55 +03:00
|
|
|
"helix-tui",
|
2020-10-15 17:32:07 +03:00
|
|
|
"helix-lsp",
|
2023-08-30 07:26:21 +03:00
|
|
|
"helix-event",
|
2021-08-25 08:40:53 +03:00
|
|
|
"helix-dap",
|
2022-02-16 16:57:20 +03:00
|
|
|
"helix-loader",
|
2022-12-01 11:35:23 +03:00
|
|
|
"helix-vcs",
|
2023-02-07 11:18:44 +03:00
|
|
|
"helix-parsec",
|
2024-01-16 21:59:48 +03:00
|
|
|
"helix-stdx",
|
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
|
|
|
|
2022-03-07 08:41:03 +03:00
|
|
|
default-members = [
|
|
|
|
"helix-term"
|
|
|
|
]
|
|
|
|
|
2021-11-15 08:36:38 +03:00
|
|
|
[profile.release]
|
|
|
|
lto = "thin"
|
2022-01-12 16:27:44 +03:00
|
|
|
# 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
|
2023-02-05 00:20:23 +03: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 05:50:40 +03:00
|
|
|
|
|
|
|
[workspace.dependencies]
|
2024-01-15 09:33:26 +03:00
|
|
|
tree-sitter = { version = "0.20", git = "https://github.com/helix-editor/tree-sitter", rev = "660481dbf71413eba5a928b0b0ab8da50c1109e0" }
|
2023-08-30 07:26:21 +03:00
|
|
|
nucleo = "0.2.0"
|
2023-11-27 15:24:57 +03:00
|
|
|
|
|
|
|
[workspace.package]
|
2023-12-05 04:54:18 +03:00
|
|
|
version = "23.10.0"
|
2023-11-27 15:24:57 +03:00
|
|
|
edition = "2021"
|
2023-12-05 04:54:18 +03:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
|
|
categories = ["editor"]
|
|
|
|
repository = "https://github.com/helix-editor/helix"
|
|
|
|
homepage = "https://helix-editor.com"
|
2023-11-27 15:24:57 +03:00
|
|
|
license = "MPL-2.0"
|
|
|
|
rust-version = "1.70"
|