-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
43 lines (41 loc) · 1016 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "bacon-ls"
version = "0.10.0-dev"
edition = "2021"
authors = ["Matteo Bigoi <[email protected]>"]
description = "Bacon Language Server"
documentation = "https://github.com/crisidev/bacon-ls"
readme = "README.md"
homepage = "https://github.com/crisidev/bacon-ls"
repository = "https://github.com/crisidev/bacon-ls"
license-file = "LICENSE"
keywords = ["lsp", "bacon", "tokio", "neovim", "vim"]
categories = [
"command-line-utilities",
"text-editors",
"asynchronous",
"development-tools",
]
[dependencies]
argh = "0.1.13"
tokio = { version = "1.42.0", features = [
"fs",
"io-std",
"io-util",
"macros",
"process",
"rt-multi-thread",
"time",
] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
toml = "0.8"
tower-lsp = "0.20.0"
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", default-features = false, features = [
"env-filter",
"fmt",
] }
[dev-dependencies]
pretty_assertions = "1.4.1"
tempdir = "0.3.7"