dap.rs

 1pub mod adapters;
 2pub mod client;
 3pub mod debugger_settings;
 4pub mod inline_value;
 5pub mod proto_conversions;
 6mod registry;
 7pub mod transport;
 8
 9pub use dap_types::*;
10pub use registry::{DapLocator, DapRegistry};
11pub use task::DebugRequest;
12
13pub type ScopeId = u64;
14pub type VariableReference = u64;
15pub type StackFrameId = u64;
16
17#[cfg(any(test, feature = "test-support"))]
18pub use adapters::FakeAdapter;