here is what the rust compiler shows:
PS C:\MyX-C5\libp2pProjects\SmoothHeatChat\SmoothChatHeat1> cargo tauri dev
Info Watching C:\MyX-C5\libp2pProjects\SmoothHeatChat\SmoothChatHeat1\src-tauri for changes...
Compiling SmoothChatHeat1 v0.0.0 (C:\MyX-C5\libp2pProjects\SmoothHeatChat\SmoothChatHeat1\src-tauri)
error[E0432]: unresolved import `tauri::api::process::Command`
--> src\main.rs:4:5
|
4 | use tauri::api::process::Command;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `Command` in `api::process`
|
help: consider importing one of these items instead
|
4 | use std::process::Command;
| ~~~~~~~~~~~~~~~~~~~~~
4 | use tauri::api::Error::Command;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~
For more information about this error, try `rustc --explain E0432`.
error: could not compile `SmoothChatHeat1` due to previous error