Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
"python.formatting.provider": "none",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
"source.organizeImports": "explicit"
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports.ruff": true
"source.organizeImports.ruff": "explicit"
}
},
"python.testing.pytestArgs": ["tests"],
Expand Down
2 changes: 1 addition & 1 deletion packages/rust/lsprotocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lsprotocol"
version = "0.1.0"
version = "0.1.0-alpha"
edition = "2021"
description = "Rust implementation of the Language Server Protocol generated from LSP specification."
authors = ["Microsoft Corporation <lsprotocol-help@microsoft.com>", "Karthik Nadig <kanadig@microsoft.com>"]
Expand Down
11 changes: 11 additions & 0 deletions packages/rust/lsprotocol/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Language Server Protocol types for Rust

This package contains Language Server Protocol types for Rust generated from the LSP specification. It is intended to be used by Rust language servers and clients. This includes types from latest version of the specification including proposed types.

## Usage

```toml
[dependencies]
lsprotocol = { features = ["proposed"]}

```