aboutsummaryrefslogtreecommitdiff
path: root/helix-dap
diff options
context:
space:
mode:
authorDmitry Sharshakov2021-08-24 17:04:14 +0000
committerDmitry Sharshakov2021-08-24 17:04:14 +0000
commitb001008a698881991d14f28c6f8980c7d83ce385 (patch)
treea31b2ab8d72c99502fd74de8e90e4001946a0126 /helix-dap
parent31212e133dd00900fc1da6eeff97c6691212d789 (diff)
Support templates in debug configurations
Diffstat (limited to 'helix-dap')
-rw-r--r--helix-dap/src/types.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-dap/src/types.rs b/helix-dap/src/types.rs
index dfc25b1b..03f22e4d 100644
--- a/helix-dap/src/types.rs
+++ b/helix-dap/src/types.rs
@@ -7,7 +7,7 @@ use std::{collections::HashMap, path::PathBuf};
pub struct DebugTemplate {
pub name: String,
pub request: String,
- pub args: HashMap<String, Value>,
+ pub args: HashMap<String, String>,
}
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]