-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (60 loc) · 1.59 KB
/
Cargo.toml
File metadata and controls
73 lines (60 loc) · 1.59 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
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "debugger-cli"
version = "0.1.3"
edition = "2021"
description = "LLM-friendly debugger CLI using the Debug Adapter Protocol"
license = "GPL-3.0-only"
repository = "https://github.com/akiselev/debugger-cli"
homepage = "https://github.com/akiselev/debugger-cli"
documentation = "https://docs.rs/debugger-cli"
readme = "README.md"
keywords = ["debugger", "dap", "llm", "cli", "debugging"]
categories = ["development-tools::debugging", "command-line-utilities"]
authors = ["Alexander Kiselev <alex@akiselev.com>"]
[[bin]]
name = "debugger"
path = "src/main.rs"
[lib]
name = "debugger"
path = "src/lib.rs"
[dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Error handling
thiserror = "2"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt", "std"] }
tracing-appender = "0.2"
# CLI parsing
clap = { version = "4", features = ["derive"] }
# Cross-platform IPC (Unix sockets / Windows named pipes)
interprocess = { version = "2", features = ["tokio"] }
# Unix-specific functionality
[target.'cfg(unix)'.dependencies]
libc = "0.2"
# Utility crates
which = "7"
directories = "5"
toml = "0.8"
# Setup command - downloading and installation
reqwest = { version = "0.12", features = ["json", "stream"] }
zip = "2.2"
tar = "0.4"
flate2 = "1.0"
xz2 = "0.1"
indicatif = "0.17"
semver = "1.0"
tempfile = "3.14"
os_info = "3.9"
async-trait = "0.1"
futures-util = "0.3"
# E2E testing
serde_yaml = "0.9"
colored = "2"
[profile.release]
strip = true
lto = true