From d104a09f796d3176ccd73a24906da87073cab85f Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Sat, 26 Aug 2023 07:10:42 -0600 Subject: chore(core): bump and trim deps (#20265) Skipping for a later follow-up: - base64: #20266 - notify - indexmap (will require follow-up in upstream projects) --- cli/tools/task.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cli/tools/task.rs') diff --git a/cli/tools/task.rs b/cli/tools/task.rs index dcb53e4ec..f582a8fd8 100644 --- a/cli/tools/task.rs +++ b/cli/tools/task.rs @@ -17,7 +17,9 @@ use deno_semver::package::PackageNv; use deno_task_shell::ExecuteResult; use deno_task_shell::ShellCommand; use deno_task_shell::ShellCommandContext; +// TODO(mmastrac): Once upstream indexmap is updated, this can go away use indexmap::IndexMap; +use indexmap1::IndexMap as IndexMap1; use std::collections::HashMap; use std::path::PathBuf; use std::rc::Rc; @@ -178,7 +180,7 @@ fn collect_env_vars() -> HashMap { fn print_available_tasks( // order can be important, so these use an index map - tasks_config: &IndexMap, + tasks_config: &IndexMap1, package_json_scripts: &IndexMap, ) { eprintln!("{}", colors::green("Available tasks:")); -- cgit v1.2.3