mirror of
https://github.com/helix-editor/helix.git
synced 2025-10-05 16:03:18 +02:00
Bumps the rust-dependencies group with 8 updates: | Package | From | To | | --- | --- | --- | | [thiserror](https://github.com/dtolnay/thiserror) | `2.0.16` | `2.0.17` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.22.0` | `3.23.0` | | [regex](https://github.com/rust-lang/regex) | `1.11.2` | `1.11.3` | | [serde](https://github.com/serde-rs/serde) | `1.0.226` | `1.0.228` | | [libc](https://github.com/rust-lang/libc) | `0.2.175` | `0.2.176` | | [cc](https://github.com/rust-lang/cc-rs) | `1.2.38` | `1.2.39` | | [regex-automata](https://github.com/rust-lang/regex) | `0.4.10` | `0.4.11` | | [windows-sys](https://github.com/microsoft/windows-rs) | `0.61.0` | `0.61.1` | Updates `thiserror` from 2.0.16 to 2.0.17 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/2.0.16...2.0.17) Updates `tempfile` from 3.22.0 to 3.23.0 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/compare/v3.22.0...v3.23.0) Updates `regex` from 1.11.2 to 1.11.3 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.11.2...1.11.3) Updates `serde` from 1.0.226 to 1.0.228 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.226...v1.0.228) Updates `libc` from 0.2.175 to 0.2.176 - [Release notes](https://github.com/rust-lang/libc/releases) - [Changelog](https://github.com/rust-lang/libc/blob/0.2.176/CHANGELOG.md) - [Commits](https://github.com/rust-lang/libc/compare/0.2.175...0.2.176) Updates `cc` from 1.2.38 to 1.2.39 - [Release notes](https://github.com/rust-lang/cc-rs/releases) - [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.38...cc-v1.2.39) Updates `regex-automata` from 0.4.10 to 0.4.11 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/commits) Updates `windows-sys` from 0.61.0 to 0.61.1 - [Release notes](https://github.com/microsoft/windows-rs/releases) - [Commits](https://github.com/microsoft/windows-rs/commits) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.17 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: tempfile dependency-version: 3.23.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies - dependency-name: regex dependency-version: 1.11.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: serde dependency-version: 1.0.228 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: libc dependency-version: 0.2.176 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: cc dependency-version: 1.2.39 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: regex-automata dependency-version: 0.4.11 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: windows-sys dependency-version: 0.61.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
111 lines
3.7 KiB
TOML
111 lines
3.7 KiB
TOML
[package]
|
|
name = "helix-term"
|
|
description = "A post-modern text editor."
|
|
include = ["src/**/*", "README.md"]
|
|
default-run = "hx"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
categories.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
|
|
[package.metadata.deb]
|
|
# generate a .deb in target/debian/ with the command: cargo deb --no-build
|
|
name = "helix"
|
|
assets = [
|
|
{ source = "target/release/hx", dest = "/usr/lib/helix/", mode = "755" },
|
|
{ source = "../contrib/hx_launcher.sh", dest = "/usr/bin/hx", mode = "755" },
|
|
{ source = "../runtime/*", dest = "/usr/lib/helix/runtime/", mode = "644" },
|
|
{ source = "../runtime/grammars/*", dest = "/usr/lib/helix/runtime/grammars/", mode = "644" }, # to avoid sources/
|
|
{ source = "../runtime/queries/**/*", dest = "/usr/lib/helix/runtime/queries/", mode = "644" },
|
|
{ source = "../runtime/themes/**/*", dest = "/usr/lib/helix/runtime/themes/", mode = "644" },
|
|
{ source = "../README.md", dest = "/usr/share/doc/helix/", mode = "644" },
|
|
{ source = "../contrib/completion/hx.bash", dest = "/usr/share/bash-completion/completions/hx", mode = "644" },
|
|
{ source = "../contrib/completion/hx.fish", dest = "/usr/share/fish/vendor_completions.d/hx.fish", mode = "644" },
|
|
{ source = "../contrib/completion/hx.zsh", dest = "/usr/share/zsh/vendor-completions/_hx", mode = "644" },
|
|
{ source = "../contrib/Helix.desktop", dest = "/usr/share/applications/Helix.desktop", mode = "644" },
|
|
{ source = "../contrib/helix.png", dest = "/usr/share/icons/hicolor/256x256/apps/helix.png", mode = "644" },
|
|
]
|
|
|
|
[features]
|
|
default = ["git"]
|
|
unicode-lines = ["helix-core/unicode-lines", "helix-view/unicode-lines"]
|
|
integration = ["helix-event/integration_test"]
|
|
git = ["helix-vcs/git"]
|
|
|
|
[[bin]]
|
|
name = "hx"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
helix-stdx = { path = "../helix-stdx" }
|
|
helix-core = { path = "../helix-core" }
|
|
helix-event = { path = "../helix-event" }
|
|
helix-view = { path = "../helix-view" }
|
|
helix-lsp = { path = "../helix-lsp" }
|
|
helix-dap = { path = "../helix-dap" }
|
|
helix-vcs = { path = "../helix-vcs" }
|
|
helix-loader = { path = "../helix-loader" }
|
|
|
|
anyhow = "1"
|
|
once_cell = "1.21"
|
|
|
|
tokio = { version = "1", features = ["rt", "rt-multi-thread", "io-util", "io-std", "time", "process", "macros", "fs", "parking_lot"] }
|
|
tui = { path = "../helix-tui", package = "helix-tui", default-features = false, features = ["termina", "crossterm"] }
|
|
termina = { workspace = true, features = ["event-stream"] }
|
|
signal-hook = "0.3"
|
|
tokio-stream = "0.1"
|
|
futures-util = { version = "0.3", features = ["std", "async-await"], default-features = false }
|
|
arc-swap = { version = "1.7.1" }
|
|
termini = "1"
|
|
indexmap = "2.11"
|
|
|
|
# Logging
|
|
fern = "0.7"
|
|
chrono = { version = "0.4", default-features = false, features = ["clock"] }
|
|
log = "0.4"
|
|
|
|
# File picker
|
|
nucleo.workspace = true
|
|
ignore = "0.4"
|
|
# markdown doc rendering
|
|
pulldown-cmark = { version = "0.13", default-features = false }
|
|
# file type detection
|
|
content_inspector = "0.2.4"
|
|
thiserror.workspace = true
|
|
|
|
# opening URLs
|
|
open = "5.3.2"
|
|
url = "2.5.4"
|
|
|
|
# config
|
|
toml.workspace = true
|
|
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
# ripgrep for global search
|
|
grep-regex = "0.1.13"
|
|
grep-searcher = "0.1.14"
|
|
|
|
dashmap = "6.0"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
crossterm = { version = "0.28", features = ["event-stream"] }
|
|
|
|
[target.'cfg(not(windows))'.dependencies] # https://github.com/vorner/signal-hook/issues/100
|
|
signal-hook-tokio = { version = "0.3", features = ["futures-v0_3"] }
|
|
libc = "0.2.176"
|
|
|
|
[build-dependencies]
|
|
helix-loader = { path = "../helix-loader" }
|
|
|
|
[dev-dependencies]
|
|
smallvec = "1.15"
|
|
indoc = "2.0.6"
|
|
tempfile.workspace = true
|
|
same-file = "1.0.1"
|