-
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (32 loc) · 802 Bytes
/
Cargo.toml
File metadata and controls
40 lines (32 loc) · 802 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
[workspace]
members = [
"crates/lsp",
]
resolver = "2"
[workspace.package]
version = "1.9.2"
edition = "2024"
rust-version = "1.92.0"
[workspace.dependencies]
# Core functionality
anyhow = "1.0"
thiserror = "2.0"
tracing = "0.1"
# LSP and server functionality
lsp-server = "=0.7.9" # Pinned due to Dependabot updater bug
lsp-types = { package = "gen-lsp-types", version = "0.5.0", features = ["url"] }
crossbeam-channel = "0.5"
# Text processing
ropey = "1.6"
regex = "1.12"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Testing
insta = { version = "1.47", features = ["yaml"] }
[workspace.metadata.crane]
name = "beancount-language-server-workspace"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"