23 lines
422 B
Plaintext
23 lines
422 B
Plaintext
# Rust build artifacts
|
|
/target/
|
|
**/target/
|
|
|
|
# Cargo.lock for applications (keep for libraries)
|
|
# We'll keep it since this is an application
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Local, machine-specific cargo config (e.g. PKG_CONFIG_PATH for a local ffmpeg).
|
|
# CI/packaging build ffmpeg from source (see .github/workflows/build.yml), so this
|
|
# must never leak into a commit.
|
|
.cargo/config.toml
|