3d4889ce9a
Bumps the rust-dependencies group with 3 updates: [bitflags](https://github.com/bitflags/bitflags), [toml](https://github.com/toml-rs/toml) and [lsp-types](https://github.com/gluon-lang/lsp-types). Updates `bitflags` from 2.4.2 to 2.5.0 - [Release notes](https://github.com/bitflags/bitflags/releases) - [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md) - [Commits](https://github.com/bitflags/bitflags/compare/2.4.2...2.5.0) Updates `toml` from 0.8.10 to 0.8.12 - [Commits](https://github.com/toml-rs/toml/compare/toml-v0.8.10...toml-v0.8.12) Updates `lsp-types` from 0.95.0 to 0.95.1 - [Changelog](https://github.com/gluon-lang/lsp-types/blob/master/CHANGELOG.md) - [Commits](https://github.com/gluon-lang/lsp-types/compare/v0.95.0...v0.95.1) --- updated-dependencies: - dependency-name: bitflags dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies - dependency-name: toml dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: lsp-types 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>
59 lines
1.3 KiB
TOML
59 lines
1.3 KiB
TOML
[package]
|
|
name = "helix-core"
|
|
description = "Helix editor core editing primitives"
|
|
include = ["src/**/*", "README.md"]
|
|
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]
|
|
unicode-lines = ["ropey/unicode_lines"]
|
|
integration = []
|
|
|
|
[dependencies]
|
|
helix-stdx = { path = "../helix-stdx" }
|
|
helix-loader = { path = "../helix-loader" }
|
|
|
|
ropey = { version = "1.6.1", default-features = false, features = ["simd"] }
|
|
smallvec = "1.13"
|
|
smartstring = "1.0.1"
|
|
unicode-segmentation = "1.11"
|
|
unicode-width = "0.1"
|
|
unicode-general-category = "0.6"
|
|
# slab = "0.4.2"
|
|
slotmap = "1.0"
|
|
tree-sitter.workspace = true
|
|
once_cell = "1.19"
|
|
arc-swap = "1"
|
|
regex = "1"
|
|
bitflags = "2.5"
|
|
ahash = "0.8.11"
|
|
hashbrown = { version = "0.14.3", features = ["raw"] }
|
|
dunce = "1.0"
|
|
|
|
log = "0.4"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
toml = "0.8"
|
|
|
|
imara-diff = "0.1.0"
|
|
|
|
encoding_rs = "0.8"
|
|
|
|
chrono = { version = "0.4", default-features = false, features = ["alloc", "std"] }
|
|
|
|
etcetera = "0.8"
|
|
textwrap = "0.16.1"
|
|
|
|
nucleo.workspace = true
|
|
parking_lot = "0.12"
|
|
globset = "0.4.14"
|
|
|
|
[dev-dependencies]
|
|
quickcheck = { version = "1", default-features = false }
|
|
indoc = "2.0.4"
|