diff options
author | Dmitry Sharshakov | 2021-08-24 17:04:14 +0000 |
---|---|---|
committer | Dmitry Sharshakov | 2021-08-24 17:04:14 +0000 |
commit | b001008a698881991d14f28c6f8980c7d83ce385 (patch) | |
tree | a31b2ab8d72c99502fd74de8e90e4001946a0126 /helix-dap | |
parent | 31212e133dd00900fc1da6eeff97c6691212d789 (diff) |
Support templates in debug configurations
Diffstat (limited to 'helix-dap')
-rw-r--r-- | helix-dap/src/types.rs | 2 |
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)] |