-
Notifications
You must be signed in to change notification settings - Fork 98
/
.gitignore
51 lines (42 loc) · 934 Bytes
/
.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
43
44
45
46
47
48
49
50
51
# Generated by Cargo
# will have compiled files and executables
**/target/**
**/dist
# Remove Cargo.lock from the framework, but not from the wasm contracts.
# In contracts it helps with tracing builds.
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
# The root Cargo.lock is kept for dependabot.
contracts/**/Cargo.lock
!contracts/**/wasm*/Cargo.lock
contracts/**/output*/
data/**/Cargo.lock
framework/**/Cargo.lock
sdk/**/Cargo.lock
tools/**/Cargo.lock
vm/**/Cargo.lock
# Coverage outputs
*.profraw
*.profdata
*.coverage
coverage.md
# These are backup files generated by rustfmt
**/*.rs.bk
# Editors config
.vscode
.zed
.idea
# Others
my-vm-tests.sh
quick.sh
template-test
# Zip output with example wasm binaries
examples-wasm.zip
tags
# MultiversX IDE
**/node_modules
**/output/**
**/testnet/**
**/mxpy.data-storage.json
**/*.interaction.json
# Python scripts
**/__pycache__/**