-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (56 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
62 lines (56 loc) · 1.35 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.3.5"
edition = "2024"
rust-version = "1.85"
authors = ["Andrei G. <k05h31@gmail.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/bug-ops/mcpls"
homepage = "https://github.com/bug-ops/mcpls"
description = "Universal MCP to LSP bridge - expose Language Server Protocol capabilities as MCP tools"
keywords = ["mcp", "lsp", "language-server", "ai", "claude"]
categories = ["development-tools", "command-line-utilities"]
[workspace.dependencies]
# Sorted alphabetically
anyhow = "1.0"
assert_cmd = "2.2"
async-trait = "0.1"
chrono = "0.4.44"
clap = "4.6"
dirs = "6.0"
futures = "0.3"
ignore = "0.4"
lsp-types = "0.97"
mcpls-core = { path = "crates/mcpls-core", version = "0.3.5" }
predicates = "3.1"
rmcp = "1.3"
rstest = "0.26"
schemars = "1.2"
serde = "1.0"
serde_json = "1.0"
tempfile = "3.27"
thiserror = "2.0"
tokio = "1.50"
toml = "1.1"
tracing = "0.1"
url = "2.5"
tracing-subscriber = "0.3"
[workspace.lints.rust]
unsafe_code = "deny"
missing_docs = "warn"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
unwrap_used = "warn"
expect_used = "warn"
[profile.release]
lto = true
codegen-units = 1
strip = true
panic = "abort"
[profile.dev]
opt-level = 0
debug = true