This repository has been archived by the owner on Nov 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
Binary name not correct in wokwi.toml
.
#151
Comments
I guess that we should use |
hlf20010508
added a commit
to hlf20010508/esp-template
that referenced
this issue
Mar 23, 2024
Use {{project-name}} instead of {{crate_name}} in wokwi.toml.
Ok, I've opened a PR #152. |
SergioGasquez
pushed a commit
that referenced
this issue
Mar 25, 2024
Use {{project-name}} instead of {{crate_name}} in wokwi.toml.
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In
wokwi.toml
, it usescrate_name
as binary name.But in
Cargo.toml
, it usesproject-name
.This results in
file not found
.For example, if the project name is
esp-test
, aftercargo build
, it will build out a binary namedesp-test
, but wokwi will searchesp_test
.If I change it to
esp_test
inCargo.toml
, the output binary name will beesp_test
which is correct for wokwi.The text was updated successfully, but these errors were encountered: