diff options
author | Yusuke Tanaka <yusuktan@maguro.dev> | 2021-07-30 22:03:41 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 15:03:41 +0200 |
commit | 8f00b5542caffd14988b923efe4f066b712d2858 (patch) | |
tree | e56ebefb0b73a2205bc482a0a6f55e87bd35a92b /cli/main.rs | |
parent | c909faf9e6cd2964398da7c0852d0229cdd1a22b (diff) |
chore: upgrade Rust to 1.54.0 (#11554)
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/main.rs b/cli/main.rs index 52f2c55af..77366ec12 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -1088,7 +1088,7 @@ async fn test_command( output.insert(specifier); get_dependencies( - &graph, + graph, graph.get_specifier(specifier)?, output, )?; @@ -1099,7 +1099,7 @@ async fn test_command( output.insert(specifier); get_dependencies( - &graph, + graph, graph.get_specifier(specifier)?, output, )?; |