-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (36 loc) · 833 Bytes
/
Cargo.toml
File metadata and controls
43 lines (36 loc) · 833 Bytes
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
[workspace]
resolver = "2"
members = [
"server",
]
[workspace.package]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/anvanster/codegraph-vscode"
authors = ["CodeGraph Team"]
[workspace.dependencies]
# LSP framework
tower-lsp = "0.20"
tokio = { version = "1", features = ["full"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Utilities
thiserror = "1.0"
dashmap = "5"
notify = "6"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
lru = "0.12"
# CodeGraph ecosystem (crates.io)
codegraph = "0.1.1"
codegraph-parser-api = "0.2.0"
codegraph-python = "0.3.0"
codegraph-rust = "0.1.1"
codegraph-typescript = "0.3.0"
codegraph-go = "0.1.2"
codegraph-c = "0.1.1"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1