mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-21 17:06:18 +04:00
f621423e7d
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.64 to 2.0.3. - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.64...2.0.3) --- updated-dependencies: - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
55 lines
972 B
TOML
55 lines
972 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"helix-core",
|
|
"helix-view",
|
|
"helix-term",
|
|
"helix-tui",
|
|
"helix-lsp-types",
|
|
"helix-lsp",
|
|
"helix-event",
|
|
"helix-dap",
|
|
"helix-loader",
|
|
"helix-vcs",
|
|
"helix-parsec",
|
|
"helix-stdx",
|
|
"xtask",
|
|
]
|
|
|
|
default-members = [
|
|
"helix-term"
|
|
]
|
|
|
|
[profile.release]
|
|
lto = "thin"
|
|
# debug = true
|
|
|
|
[profile.opt]
|
|
inherits = "release"
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
# strip = "debuginfo" # TODO: or strip = true
|
|
opt-level = 3
|
|
|
|
[profile.integration]
|
|
inherits = "test"
|
|
package.helix-core.opt-level = 2
|
|
package.helix-tui.opt-level = 2
|
|
package.helix-term.opt-level = 2
|
|
|
|
[workspace.dependencies]
|
|
tree-sitter = { version = "0.22" }
|
|
nucleo = "0.5.0"
|
|
slotmap = "1.0.7"
|
|
thiserror = "2.0"
|
|
|
|
[workspace.package]
|
|
version = "24.7.0"
|
|
edition = "2021"
|
|
authors = ["Blaž Hrastnik <blaz@mxxn.io>"]
|
|
categories = ["editor"]
|
|
repository = "https://github.com/helix-editor/helix"
|
|
homepage = "https://helix-editor.com"
|
|
license = "MPL-2.0"
|
|
rust-version = "1.70"
|