dirge-agent 0.7.6

Minimalistic coding agent written in Rust, optimized for memory footprint and performance
1
2
3
4
5
6
7
8
9
10
//! DAP (Debug Adapter Protocol) integration. Feature-gated behind
//! `#[cfg(feature = "dap")]` — all public types in this module are
//! invisible when the feature is off.

pub mod client;
pub mod config;
#[cfg(all(feature = "dap", feature = "plugin"))]
pub mod janet_bindings;
pub mod session;
pub mod types;