harn-dap 0.8.108

Debug Adapter Protocol implementation for Harn
Documentation
1
2
3
4
5
6
7
8
9
//! Thin binary shim for the Harn debug adapter.
//!
//! All logic lives in the `harn_dap` library so the single multi-call `harn`
//! binary can dispatch into it (see `harn-cli`). This binary stays buildable
//! for local development and as a standalone artifact.

fn main() {
    harn_dap::run();
}