| 1 | [package] |
| 2 | name = "lsp-types" |
| 3 | version = "0.95.1" |
| 4 | authors = ["Markus Westerlind <marwes91@gmail.com>" , "Bruno Medeiros <bruno.do.medeiros@gmail.com>" ] |
| 5 | edition = "2018" |
| 6 | description = "Types for interaction with a language server, using VSCode's Language Server Protocol" |
| 7 | |
| 8 | repository = "https://github.com/gluon-lang/lsp-types" |
| 9 | documentation = "https://docs.rs/lsp-types" |
| 10 | |
| 11 | readme = "README.md" |
| 12 | |
| 13 | keywords = ["language" , "server" , "lsp" , "vscode" , "lsif" ] |
| 14 | |
| 15 | license = "MIT" |
| 16 | |
| 17 | [dependencies] |
| 18 | bitflags = "1.0.1" |
| 19 | serde = { version = "1.0.34" , features = ["derive" ] } |
| 20 | serde_json = "1.0.50" |
| 21 | serde_repr = "0.1" |
| 22 | url = {version = "2.0.0" , features = ["serde" ]} |
| 23 | |
| 24 | [features] |
| 25 | default = [] |
| 26 | # Enables proposed LSP extensions. |
| 27 | # NOTE: No semver compatibility is guaranteed for types enabled by this feature. |
| 28 | proposed = [] |
| 29 | |