We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc34753 commit c814c33Copy full SHA for c814c33
src/managers/cargo.rs
@@ -17,7 +17,7 @@ pub fn is_command_available() -> bool {
17
18
pub fn get_task_command_map() -> HashMap<String, String> {
19
let mut task_command_map = HashMap::new();
20
- task_command_map.insert("install".to_string(), "cargo build".to_string());
+ task_command_map.insert("install".to_string(), "cargo fetch".to_string());
21
task_command_map.insert("compile".to_string(), "cargo build".to_string());
22
task_command_map.insert("build".to_string(), "cargo build".to_string());
23
task_command_map.insert("release".to_string(), "cargo build --release".to_string());
0 commit comments