mirror of
https://github.com/helix-editor/helix
synced 2026-08-06 02:52:59 +02:00
Bumps the rust-dependencies group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [log](https://github.com/rust-lang/log) | `0.4.29` | `0.4.30` | | [serde_json](https://github.com/serde-rs/json) | `1.0.149` | `1.0.150` | | [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) | `0.13.3` | `0.13.4` | | [open](https://github.com/Byron/open-rs) | `5.3.4` | `5.3.5` | | [dashmap](https://github.com/xacrimon/dashmap) | `6.1.0` | `6.2.1` | | [hashbrown](https://github.com/rust-lang/hashbrown) | `0.17.0` | `0.17.1` | | [cc](https://github.com/rust-lang/cc-rs) | `1.2.61` | `1.2.62` | Updates `log` from 0.4.29 to 0.4.30 - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/log/compare/0.4.29...0.4.30) Updates `serde_json` from 1.0.149 to 1.0.150 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.149...v1.0.150) Updates `pulldown-cmark` from 0.13.3 to 0.13.4 - [Release notes](https://github.com/raphlinus/pulldown-cmark/releases) - [Commits](https://github.com/raphlinus/pulldown-cmark/compare/v0.13.3...v0.13.4) Updates `open` from 5.3.4 to 5.3.5 - [Release notes](https://github.com/Byron/open-rs/releases) - [Changelog](https://github.com/Byron/open-rs/blob/main/changelog.md) - [Commits](https://github.com/Byron/open-rs/compare/v5.3.4...v5.3.5) Updates `dashmap` from 6.1.0 to 6.2.1 - [Release notes](https://github.com/xacrimon/dashmap/releases) - [Commits](https://github.com/xacrimon/dashmap/compare/v6.1.0...v6.2.1) Updates `hashbrown` from 0.17.0 to 0.17.1 - [Release notes](https://github.com/rust-lang/hashbrown/releases) - [Changelog](https://github.com/rust-lang/hashbrown/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.17.0...v0.17.1) Updates `cc` from 1.2.61 to 1.2.62 - [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.61...cc-v1.2.62) --- updated-dependencies: - dependency-name: cc dependency-version: 1.2.62 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: dashmap dependency-version: 6.2.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: rust-dependencies - dependency-name: hashbrown dependency-version: 0.17.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: log dependency-version: 0.4.30 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: open dependency-version: 5.3.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: pulldown-cmark dependency-version: 0.13.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: rust-dependencies - dependency-name: serde_json dependency-version: 1.0.150 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>
34 lines
865 B
INI
34 lines
865 B
INI
[package]
|
|
name = "helix-lsp-types"
|
|
version = "0.95.1"
|
|
authors = [
|
|
# Original authors
|
|
"Markus Westerlind <marwes91@gmail.com>",
|
|
"Bruno Medeiros <bruno.do.medeiros@gmail.com>",
|
|
# Since forking
|
|
"Helix contributors"
|
|
]
|
|
edition = "2018"
|
|
description = "Types for interaction with a language server, using VSCode's Language Server Protocol"
|
|
|
|
repository = "https://github.com/gluon-lang/lsp-types"
|
|
documentation = "https://docs.rs/lsp-types"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["language", "server", "lsp", "vscode", "lsif"]
|
|
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
bitflags.workspace = true
|
|
serde = { version = "1.0.228", features = ["derive"] }
|
|
serde_json = "1.0.150"
|
|
url = {version = "2.5.4", features = ["serde"]}
|
|
|
|
[features]
|
|
default = []
|
|
# Enables proposed LSP extensions.
|
|
# NOTE: No semver compatibility is guaranteed for types enabled by this feature.
|
|
proposed = []
|