Change The Name Of A Rust Binary So It's Different From The Package Name
By default, the name of a rust binary is the same as the package name (which I think comes from the directory name). I'm changing the name by adding this to my _Cargo.toml__ file:
Code
[[bin]]
name = "new-name"
path = "src/main.rs"
<!-- tmp place holder for end code fix -->