Initial rust project structure with clap
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2022-09-19 15:33:34 -04:00
parent 26a7ab742e
commit 1723c26ba9
7 changed files with 93 additions and 19 deletions

34
.gitignore vendored
View File

@ -1,23 +1,21 @@
# ---> Go
# If you prefer the allow list template instead of the deny list, see community template:
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
# ---> Rust
# Generated by Cargo
# will have compiled files and executables
debug/
target/
# Test binary, built with `go test -c`
*.test
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# These are backup files generated by rustfmt
**/*.rs.bk
# Dependency directories (remove the comment below to include it)
# vendor/
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# Go workspace file
go.work
# Added by cargo
/target