Reset the repository
rm -rf .git
git init
- Init cargo project
cargo init --lib
- Remove the release ci
rm .github/workflows/release.yaml
- Remove the install command from
justfile
- Init cargo project
cargo init --bin
- Create
src/main.rs
.
echo 'fn main() {}' > src/main.rs
As a last options you can have a look at Cargo.template.toml
to see if any
of the options suit the project.