- Add a comprehensive .gitignore to manage project files. - Create the basic project structure including Cargo.toml, LICENSE, and README.md. - Add basic project documentation.
28 lines
435 B
Plaintext
28 lines
435 B
Plaintext
# Generated by Cargo
|
|
target/
|
|
|
|
# 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
|
|
|
|
# These are backup files generated by rustfmt
|
|
**/*.rs.bk
|
|
|
|
# Environment variables
|
|
.env
|
|
|
|
# IDE files
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
|
|
# macOS files
|
|
.DS_Store
|
|
|
|
# Windows files
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# Log files
|
|
*.log |