dap.rs

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