forked from BamPeers/rust-ci-github-actions-workflow
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
46 lines (35 loc) · 835 Bytes
/
.gitignore
File metadata and controls
46 lines (35 loc) · 835 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# will have compiled files and executables
**/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
# Taskfile checksums
.task/
# Pipelight logs
.pipelight/
# Build output
build/
coverage/
**/results.json
**/results.xml
# Documentation builds
build/output/
# xtask logs
**/xtask-check.log
# Mise local config (may contain secrets)
.mise.local.toml
# Tribble
.tribble/
# Core dumps
*.core
# Coverage reports
# -----------------
# The default directory used by cargo-llvm-cov
coverage/
# The custom directory we specified in our Taskfile
coverage-report/
# Raw profile data generated during test execution
*.profraw
*.profdata