Unnamed repository; edit this file 'description' to name the repository.
Rename `lsp-types` crate to `helix-lsp-types`
Michael Davis 2024-07-28
parent 1ccdc55 · commit 7793031
-rw-r--r--Cargo.lock11
-rw-r--r--helix-lsp-types/Cargo.toml10
2 files changed, 19 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c54e481e..38cd0e1c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1407,6 +1407,17 @@ dependencies = [
]
[[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"
diff --git a/helix-lsp-types/Cargo.toml b/helix-lsp-types/Cargo.toml
index ad7a3ca0..18cc8b14 100644
--- a/helix-lsp-types/Cargo.toml
+++ b/helix-lsp-types/Cargo.toml
@@ -1,7 +1,13 @@
[package]
-name = "lsp-types"
+name = "helix-lsp-types"
version = "0.95.1"
-authors = ["Markus Westerlind <[email protected]>", "Bruno Medeiros <[email protected]>"]
+authors = [
+ # Original authors
+ "Markus Westerlind <[email protected]>",
+ "Bruno Medeiros <[email protected]>",
+ # Since forking
+ "Helix contributors"
+]
edition = "2018"
description = "Types for interaction with a language server, using VSCode's Language Server Protocol"