Rename lsp-types crate to helix-lsp-types

This commit is contained in:
Michael Davis 2024-07-27 12:15:37 -04:00
parent 1ccdc55db9
commit 7793031aa6
No known key found for this signature in database
2 changed files with 19 additions and 2 deletions

11
Cargo.lock generated
View File

@ -1406,6 +1406,17 @@ dependencies = [
"tokio-stream",
]
[[package]]
name = "helix-lsp-types"
version = "0.95.1"
dependencies = [
"bitflags 1.3.2",
"serde",
"serde_json",
"serde_repr",
"url",
]
[[package]]
name = "helix-parsec"
version = "24.7.0"

View File

@ -1,7 +1,13 @@
[package]
name = "lsp-types"
name = "helix-lsp-types"
version = "0.95.1"
authors = ["Markus Westerlind <marwes91@gmail.com>", "Bruno Medeiros <bruno.do.medeiros@gmail.com>"]
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"