From 238590aa9fdfe2aac04bb96abad2f2d2feb3101a Mon Sep 17 00:00:00 2001 From: Aaron O'Mullan Date: Thu, 17 Nov 2022 22:59:10 -0300 Subject: chore: use Rust 1.65.0 (#16688) --- cli/bench/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cli/bench') diff --git a/cli/bench/main.rs b/cli/bench/main.rs index e347d2e1c..c756c2c2e 100644 --- a/cli/bench/main.rs +++ b/cli/bench/main.rs @@ -343,7 +343,7 @@ fn run_max_mem_benchmark(deno_exe: &Path) -> Result> { for (name, args, return_code) in EXEC_TIME_BENCHMARKS { let proc = Command::new("time") - .args(&["-v", deno_exe.to_str().unwrap()]) + .args(["-v", deno_exe.to_str().unwrap()]) .args(args.iter()) .stdout(Stdio::null()) .stderr(Stdio::piped()) @@ -501,7 +501,7 @@ async fn main() -> Result<()> { let mut file = secure_tempfile::NamedTempFile::new()?; let exit_status = Command::new("strace") - .args(&[ + .args([ "-c", "-f", "-o", -- cgit v1.2.3