1
0
Fork 0
mirror of https://github.com/helix-editor/helix synced 2024-05-03 22:26:07 +02:00
helix/Cargo.toml

53 lines
933 B
INI
Raw Permalink Normal View History

2020-05-20 11:14:51 +02:00
[workspace]
resolver = "2"
2020-05-20 11:14:51 +02:00
members = [
"helix-core",
"helix-view",
2020-05-20 11:14:51 +02:00
"helix-term",
"helix-tui",
2020-10-15 16:32:07 +02:00
"helix-lsp",
"helix-event",
2021-08-25 07:40:53 +02:00
"helix-dap",
"helix-loader",
Show (git) diff signs in gutter (#3890) * Show (git) diff signs in gutter (#3890) Avoid string allocation when git diffing Incrementally diff using changesets refactor diffs to be provider indepndent and improve git implementation remove dependency on zlib-ng switch to asynchronus diffing with similar Update helix-vcs/Cargo.toml fix toml formatting Co-authored-by: Ivan Tham <pickfire@riseup.net> fix typo in documentation use ropey reexpors from helix-core fix crash when creating new file remove useless use if io::Cursor fix spelling mistakes implement suggested improvement to repository loading improve git test isolation remove lefover comments Co-authored-by: univerz <univerz@fu-solution.com> fixed spelling mistake minor cosmetic changes fix: set self.differ to None if decoding the diff_base fails fixup formatting Co-authored-by: Ivan Tham <pickfire@riseup.net> reload diff_base when file is reloaded from disk switch to imara-diff Fixup formatting Co-authored-by: Blaž Hrastnik <blaz@mxxn.io> Redraw buffer whenever a diff is updated. Only store hunks instead of changes for individual lines to easily allow jumping between them Update to latest gitoxide version Change default diff gutter position Only update gutter after timeout * update diff gutter synchronously, with a timeout * Apply suggestions from code review Co-authored-by: Blaž Hrastnik <blaz@mxxn.io> Co-authored-by: Michael Davis <mcarsondavis@gmail.com> * address review comments and ensure lock is always aquired * remove configuration for redraw timeout Co-authored-by: Blaž Hrastnik <blaz@mxxn.io> Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
2022-12-01 09:35:23 +01:00
"helix-vcs",
"helix-parsec",
"helix-stdx",
2021-11-17 14:30:11 +01:00
"xtask",
2020-05-20 11:14:51 +02:00
]
2020-09-12 10:44:57 +02:00
2022-03-07 06:41:03 +01:00
default-members = [
"helix-term"
]
[profile.release]
lto = "thin"
# debug = true
2022-02-25 09:24:20 +01:00
[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]
2024-03-17 14:42:16 +01:00
tree-sitter = { version = "0.22" }
nucleo = "0.2.0"
slotmap = "1.0.7"
[workspace.package]
version = "24.3.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"