
Closes #ISSUE Release Notes: - N/A --------- Co-authored-by: Cole Miller <m@cole-miller.net> Co-authored-by: Anthony Eid <hello@anthonyeid.me> Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com> Co-authored-by: Anthony <anthony@zed.dev> Co-authored-by: Conrad <conrad@zed.dev>
17 lines
381 B
Rust
17 lines
381 B
Rust
pub mod adapters;
|
|
pub mod client;
|
|
pub mod debugger_settings;
|
|
pub mod proto_conversions;
|
|
mod registry;
|
|
pub mod transport;
|
|
|
|
pub use dap_types::*;
|
|
pub use registry::{DapLocator, DapRegistry};
|
|
pub use task::DebugRequest;
|
|
|
|
pub type ScopeId = u64;
|
|
pub type VariableReference = u64;
|
|
pub type StackFrameId = u64;
|
|
|
|
#[cfg(any(test, feature = "test-support"))]
|
|
pub use adapters::FakeAdapter;
|