Unnamed repository; edit this file 'description' to name the repository.
Rename `lsp-types` crate to `helix-lsp-types`
| -rw-r--r-- | Cargo.lock | 11 | ||||
| -rw-r--r-- | helix-lsp-types/Cargo.toml | 10 |
2 files changed, 19 insertions, 2 deletions
@@ -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" |