-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy path.gitignore
42 lines (34 loc) · 1.03 KB
/
.gitignore
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
# macOS folder attributes
.DS_Store
# Rust auto-generated
target/
**/*.rs.bk
# Lock files...
#
# As of August 2024, and a change in the Rust guidance around lock files for libraries
# (see https://blog.rust-lang.org/2023/08/29/committing-lockfiles.html), we now source control our
# Cargo.lock file.
#
# This allows our builds to be more reducible, and is a partial mitigation against supply chain attacks.
#
# We also use --locked for all CI builds to ensure these lock files are actually used.
#
# However, this is possibly at the expense of Scrypto users who will have their own Cargo.locks...
# But our Scrypto template now comes with a Cargo.lock template, which should mitigate thi need.
#
# In future, we may wish to add a CI job to build against the latest versions, as per:
# https://doc.rust-lang.org/cargo/guide/continuous-integration.html#verifying-latest-dependencies
!Cargo.lock
# Flamegraph profiles
flamegraph.svg
perf.data
# IntelliJ
.idea/
# VScode
.vscode/launch.json
# Emacs
*~
# Rusty-tags
*.vi
# Source based coverage
*.profraw