# Generated by Cargo
# will have compiled files and executables
/target/
**/*.rs.bk

# 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

# MSVC Windows builds
*.pdb
*.ilk
*.exp
*.lib

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Editor files
.vscode/
.idea/
*.swp
*.swo
*~

# Rust documentation
/doc/

# Output of `cargo install`
.cargo/registry/
.cargo/git/

# Environment files
.env
.env.local
.env.*.local

# Test coverage
/coverage/
*.profraw

# Build artifacts
*.o
*.d
*.so
*.dylib
*.dll

# Executables
*.exe

# Debug symbols
*.dSYM/

# Rust cache
/.rustc/
/.cargo/

# Local IDE settings
.settings/
.project
.classpath

# Temporary files
tmp/
temp/

# Logs
*.log
logs/

# Cargo check files
/.cargo-check/

# Rust analyzer
rust-analyzer/

# Pre-commit hooks
.pre-commit-config.yaml
