Thanks for the report Anna, would you mind enabling RUST_BACKTRACE so we can get some more insight into what might be causing this issue?
You can do so with the following steps below
For Linux:
Open your terminal.
Type “export RUST_BACKTRACE=1” and hit enter. This will enable the backtrace for the current session of your terminal.
To make the change permanent, add the same command to your ~/.bashrc or ~/.zshrc file.
For macOS:
Open your terminal.
Type “export RUST_BACKTRACE=1” and hit enter. This will enable the backtrace for the current session of your terminal.
To make the change permanent, add the same command to your ~/.bash_profile or ~/.zshrc file.
For Windows (Powershell):
Open your Powershell terminal.
Type “$env:RUST_BACKTRACE=1” and hit enter. This will enable the backtrace for the current session of your terminal.
To make the change permanent, add the same command to your Powershell profile file. You can find your Powershell profile file by typing “$PROFILE” in your Powershell terminal.