237cbe4bca
Bumps the rust-dependencies group with 4 updates: [globset](https://github.com/BurntSushi/ripgrep), [ignore](https://github.com/BurntSushi/ripgrep), [grep-regex](https://github.com/BurntSushi/ripgrep) and [grep-searcher](https://github.com/BurntSushi/ripgrep). Updates `globset` from 0.4.14 to 0.4.15 - [Release notes](https://github.com/BurntSushi/ripgrep/releases) - [Changelog](https://github.com/BurntSushi/ripgrep/blob/master/CHANGELOG.md) - [Commits](https://github.com/BurntSushi/ripgrep/compare/globset-0.4.14...ignore-0.4.15) Updates `ignore` from 0.4.22 to 0.4.23 - [Release notes](https://github.com/BurntSushi/ripgrep/releases) - [Changelog](https://github.com/BurntSushi/ripgrep/blob/master/CHANGELOG.md) - [Commits](https://github.com/BurntSushi/ripgrep/commits) Updates `grep-regex` from 0.1.12 to 0.1.13 - [Release notes](https://github.com/BurntSushi/ripgrep/releases) - [Changelog](https://github.com/BurntSushi/ripgrep/blob/master/CHANGELOG.md) - [Commits](https://github.com/BurntSushi/ripgrep/compare/grep-regex-0.1.12...0.1.13) Updates `grep-searcher` from 0.1.13 to 0.1.14 - [Release notes](https://github.com/BurntSushi/ripgrep/releases) - [Changelog](https://github.com/BurntSushi/ripgrep/blob/master/CHANGELOG.md) - [Commits](https://github.com/BurntSushi/ripgrep/compare/grep-searcher-0.1.13...0.1.14) --- updated-dependencies: - dependency-name: globset dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: ignore dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: grep-regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: grep-searcher 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>
89 lines
2.4 KiB
TOML
89 lines
2.4 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
|
|
|
|
[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.19"
|
|
|
|
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 = ["crossterm"] }
|
|
crossterm = { version = "0.28", 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"
|
|
|
|
# Logging
|
|
fern = "0.6"
|
|
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.12", default-features = false }
|
|
# file type detection
|
|
content_inspector = "0.2.4"
|
|
thiserror = "1.0"
|
|
|
|
# opening URLs
|
|
open = "5.3.0"
|
|
url = "2.5.2"
|
|
|
|
# config
|
|
toml = "0.8"
|
|
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
# ripgrep for global search
|
|
grep-regex = "0.1.13"
|
|
grep-searcher = "0.1.14"
|
|
|
|
[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.158"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
crossterm = { version = "0.28", features = ["event-stream", "use-dev-tty", "libc"] }
|
|
|
|
[build-dependencies]
|
|
helix-loader = { path = "../helix-loader" }
|
|
|
|
[dev-dependencies]
|
|
smallvec = "1.13"
|
|
indoc = "2.0.5"
|
|
tempfile = "3.12.0"
|
|
same-file = "1.0.1"
|