From c9e706df85be4ac2f56403cc02414dbe13638a79 Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Wed, 17 Jan 2024 15:48:51 -0800 Subject: [PATCH 1/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2af6b02..f14b0d1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Language Server Protocol types code generator -This repository contains a Python implementation of a Language Server Protocol types and classes code generator for various languages. +This repository contains a Python implementation of [Language Server Protocol](https://microsoft.github.io/language-server-protocol/) types and classes, and code generators for various languages. It simplifies the creation of language servers for different programming languages by providing a robust and easy-to-use type generation system. @@ -77,5 +77,5 @@ Below is the list of plugins already created using this package. | Language | Plugin Module | Package | Status | | -------- | ------------------------ | --------------------------------------------------------------------------------------------------- | ----------------- | | Python | generator.plugins.python | [![PyPI](https://img.shields.io/pypi/v/lsprotocol?label=lsprotocol)](https://pypi.org/p/lsprotocol) | Active | -| Rust | generator.plugins.rust | | Under development | +| Rust | generator.plugins.rust | [![Crate](https://img.shields.io/crates/v/lsprotocol)](https://crates.io/crates/lsprotocol) | Active | | Dotnet | generator.plugins.dotnet | | Under development | From 79057bbcdaa765c1571388247f6b3a4f0129376f Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Wed, 17 Jan 2024 20:46:59 -0800 Subject: [PATCH 2/2] Apply suggestions from code review --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f14b0d1..437145d 100644 --- a/README.md +++ b/README.md @@ -77,5 +77,5 @@ Below is the list of plugins already created using this package. | Language | Plugin Module | Package | Status | | -------- | ------------------------ | --------------------------------------------------------------------------------------------------- | ----------------- | | Python | generator.plugins.python | [![PyPI](https://img.shields.io/pypi/v/lsprotocol?label=lsprotocol)](https://pypi.org/p/lsprotocol) | Active | -| Rust | generator.plugins.rust | [![Crate](https://img.shields.io/crates/v/lsprotocol)](https://crates.io/crates/lsprotocol) | Active | +| Rust | generator.plugins.rust | [![Crates](https://img.shields.io/crates/v/lsprotocol)](https://crates.io/crates/lsprotocol) | Active | | Dotnet | generator.plugins.dotnet | | Under development |