-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (35 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
40 lines (35 loc) · 1.22 KB
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
[package]
authors.workspace = true
categories.workspace = true
description = "<DESCRIPTION>"
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
name = "pg_lsp_new"
repository.workspace = true
version = "0.0.0"
[dependencies]
anyhow = { workspace = true }
biome_deserialize = { workspace = true }
futures = "0.3.31"
pg_analyse = { workspace = true }
pg_completions = { workspace = true }
pg_configuration = { workspace = true }
pg_console = { workspace = true }
pg_diagnostics = { workspace = true }
pg_fs = { workspace = true }
pg_lsp_converters = { workspace = true }
pg_text_edit = { workspace = true }
pg_workspace_new = { workspace = true }
rustc-hash = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
text-size.workspace = true
tokio = { workspace = true, features = ["rt", "io-std"] }
tower-lsp = { version = "0.20.0" }
tracing = { workspace = true, features = ["attributes"] }
[dev-dependencies]
[lib]
doctest = false
[features]