cli: update dependencies (#184189)

Up all the dependencies! Notably:

- russh to the latest main now that tunnel changes are merged
- secret-service-rs to 3.x and dropping our custom fork
- which also fixes SDL pings

Fixes https://github.com/microsoft/vscode-internalbacklog/issues/4328
Fixes https://github.com/microsoft/vscode-internalbacklog/issues/4077
This commit is contained in:
Connor Peet
2023-06-02 10:27:47 -07:00
committed by GitHub
parent 0cf685c1da
commit 75c2f321b2
9 changed files with 739 additions and 526 deletions
+2 -2
View File
@@ -29,12 +29,12 @@ pub fn try_parse_legacy(
match args.get_mut(long) {
Some(prev) => {
if let Some(v) = value {
prev.push(v.to_str_lossy().to_string());
prev.push(v.to_string_lossy().to_string());
}
}
None => {
if let Some(v) = value {
args.insert(long.to_string(), vec![v.to_str_lossy().to_string()]);
args.insert(long.to_string(), vec![v.to_string_lossy().to_string()]);
} else {
args.insert(long.to_string(), vec![]);
}