diff options
author | Matt Mastracci <matthew@mastracci.com> | 2023-08-26 07:10:42 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-26 07:10:42 -0600 |
commit | d104a09f796d3176ccd73a24906da87073cab85f (patch) | |
tree | 07f792ff8dd8ae150888fb9cad1164ab9b46f57c /cli/tools/task.rs | |
parent | 5dbf5c82936a1975067101e25580790c8b7c50b7 (diff) |
chore(core): bump and trim deps (#20265)
Skipping for a later follow-up:
- base64: #20266
- notify
- indexmap (will require follow-up in upstream projects)
Diffstat (limited to 'cli/tools/task.rs')
-rw-r--r-- | cli/tools/task.rs | 4 |
1 files changed, 3 insertions, 1 deletions
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<String, String> { fn print_available_tasks( // order can be important, so these use an index map - tasks_config: &IndexMap<String, String>, + tasks_config: &IndexMap1<String, String>, package_json_scripts: &IndexMap<String, String>, ) { eprintln!("{}", colors::green("Available tasks:")); |