Skip to content

Commit c1a759c

Browse files
committed
v1.0.26
1 parent 6ddfe30 commit c1a759c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+1523
-835
lines changed

.gitignore

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
# This file should only ignore things that are generated during a `x.py` build,
2+
# generated by common IDEs, and optional files controlled by the user that
3+
# affect the build (such as config.toml).
4+
# In particular, things like `mir_dump` should not be listed here; they are only
5+
# created during manual debugging and many people like to clean up instead of
6+
# having git ignore such leftovers. You can use `.git/info/exclude` to
7+
# configure your local ignore list.
8+
9+
## File system
10+
.DS_Store
11+
desktop.ini
12+
13+
## Editor
14+
*.swp
15+
*.swo
16+
Session.vim
17+
.cproject
18+
.idea
19+
*.iml
20+
.vscode
21+
.project
22+
.vim/
23+
.helix/
24+
.zed/
25+
.favorites.json
26+
.settings/
27+
.vs/
28+
29+
## Tool
30+
.valgrindrc
31+
.cargo
32+
# Included because it is part of the test case
33+
!/tests/run-make/thumb-none-qemu/example/.cargo
34+
35+
## Configuration
36+
/config.toml
37+
/Makefile
38+
config.mk
39+
config.stamp
40+
no_llvm_build
41+
42+
## Build
43+
/dl/
44+
/doc/
45+
/inst/
46+
/llvm/
47+
/mingw-build/
48+
build/
49+
!/compiler/rustc_mir_build/src/build/
50+
/build-rust-analyzer/
51+
/dist/
52+
/unicode-downloads
53+
/target
54+
/library/target
55+
/src/bootstrap/target
56+
/src/tools/x/target
57+
# Created by default with `src/ci/docker/run.sh`
58+
/obj/
59+
60+
## ICE reports
61+
rustc-ice-*.txt
62+
63+
## Temporary files
64+
*~
65+
\#*
66+
\#*\#
67+
.#*
68+
69+
## Tags
70+
tags
71+
tags.*
72+
TAGS
73+
TAGS.*
74+
75+
## Python
76+
__pycache__/
77+
*.py[cod]
78+
*$py.class
79+
80+
## Node
81+
node_modules
82+
package-lock.json
83+
package.json
84+
85+
## Rustdoc GUI tests
86+
tests/rustdoc-gui/src/**.lock
87+
88+
# Before adding new lines, see the comment at the top.
89+
90+
local_world.json.compressed
91+
pytests
92+
pytests/*
93+
keys

0 commit comments

Comments
 (0)