This commit is contained in:
Blaž Hrastnik 2021-08-17 09:44:02 +09:00
parent 2094ff1aaf
commit 86102a651f
2 changed files with 1 additions and 2 deletions

View file

@ -18,7 +18,6 @@ use std::{
}; };
use tokio::{ use tokio::{
io::{AsyncBufRead, AsyncWrite, BufReader, BufWriter}, io::{AsyncBufRead, AsyncWrite, BufReader, BufWriter},
join,
net::TcpStream, net::TcpStream,
process::{Child, Command}, process::{Child, Command},
sync::{ sync::{

View file

@ -1925,7 +1925,7 @@ mod cmd {
let mut args = HashMap::new(); let mut args = HashMap::new();
args.insert("mode", "debug"); args.insert("mode", "debug");
// args.insert("program", "path/to/program"); args.insert("program", "main");
let request = client.launch(to_value(args)?); let request = client.launch(to_value(args)?);
let _ = block_on(request)?; let _ = block_on(request)?;