2020-05-20 18:14:51 +09:00
|
|
|
[workspace]
|
2023-11-27 21:24:57 +09:00
|
|
|
resolver = "2"
|
2020-05-20 18:14:51 +09:00
|
|
|
members = [
|
|
|
|
"helix-core",
|
2020-09-21 18:24:16 +09:00
|
|
|
"helix-view",
|
2020-05-20 18:14:51 +09:00
|
|
|
"helix-term",
|
2021-05-09 17:52:55 +09:00
|
|
|
"helix-tui",
|
2024-07-27 12:14:41 -04:00
|
|
|
"helix-lsp-types",
|
2020-10-15 23:32:07 +09:00
|
|
|
"helix-lsp",
|
2023-08-30 06:26:21 +02:00
|
|
|
"helix-event",
|
2021-08-25 08:40:53 +03:00
|
|
|
"helix-dap",
|
2022-02-16 07:57:20 -06:00
|
|
|
"helix-loader",
|
2022-12-01 09:35:23 +01:00
|
|
|
"helix-vcs",
|
2023-02-07 09:18:44 +01:00
|
|
|
"helix-parsec",
|
2024-01-16 13:59:48 -05:00
|
|
|
"helix-stdx",
|
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"
|
|
|
|
]
|
|
|
|
|
2021-11-15 14:36:38 +09:00
|
|
|
[profile.release]
|
|
|
|
lto = "thin"
|
2022-02-25 17:24:20 +09:00
|
|
|
|
|
|
|
[profile.opt]
|
|
|
|
inherits = "release"
|
|
|
|
lto = "fat"
|
|
|
|
codegen-units = 1
|
2025-01-17 08:37:53 +09:00
|
|
|
strip = true
|
2022-02-25 17:24:20 +09:00
|
|
|
opt-level = 3
|
2023-02-04 16:20:23 -05: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 04:50:40 +02:00
|
|
|
|
|
|
|
[workspace.dependencies]
|
2024-03-17 09:42:16 -04:00
|
|
|
tree-sitter = { version = "0.22" }
|
2024-04-02 02:34:20 +02:00
|
|
|
nucleo = "0.5.0"
|
2024-04-08 02:46:32 +02:00
|
|
|
slotmap = "1.0.7"
|
2024-11-18 23:42:54 +00:00
|
|
|
thiserror = "2.0"
|
2025-01-06 19:34:21 -05:00
|
|
|
tempfile = "3.15.0"
|
2025-01-21 08:59:05 -06:00
|
|
|
bitflags = "2.8"
|
2025-01-26 16:52:29 -05:00
|
|
|
unicode-segmentation = "1.2"
|
2023-11-27 21:24:57 +09:00
|
|
|
|
|
|
|
[workspace.package]
|
2025-01-19 15:50:39 -05:00
|
|
|
version = "25.1.1"
|
2023-11-27 21:24:57 +09:00
|
|
|
edition = "2021"
|
2023-12-04 20:54:18 -05:00
|
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
|
|
categories = ["editor"]
|
|
|
|
repository = "https://github.com/helix-editor/helix"
|
|
|
|
homepage = "https://helix-editor.com"
|
2023-11-27 21:24:57 +09:00
|
|
|
license = "MPL-2.0"
|
2024-11-22 01:12:34 -08:00
|
|
|
rust-version = "1.76"
|