forked from Strum355/RustLSP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (19 loc) · 704 Bytes
/
Cargo.toml
File metadata and controls
22 lines (19 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "rust_lsp"
version = "0.6.0"
authors = ["Bruno Medeiros <bruno.do.medeiros@gmail.com>"]
description = "A library for working with the Language Server Protocol, as either client or server."
repository = "https://github.com/RustDT/rustlsp"
documentation = "https://docs.rs/rustlsp"
license = "Apache-2.0"
keywords = ["rustlsp", "lsp"]
[dependencies]
rustdt_util = "0.2.3"
rustdt-json_rpc = { git = "https://github.com/Strum355/rustdt-json_rpc", branch = "serde-1.0" }
log = "0.4.11"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.48"
lsp-types = { git = "https://github.com/gluon-lang/lsp-types", branch = "master"}
[lib]
name = "rust_lsp"
path = "src/lib.rs"