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