Skip to content

Commit e8ad99a

Browse files
Merge pull request #278 from mmalek/master
Rust: add tutorial 6; use async; consistent file layout
2 parents e1553ba + 8cc00b1 commit e8ad99a

36 files changed

+1811
-7142
lines changed

rust/.gitignore

Lines changed: 1 addition & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -1,78 +1 @@
1-
# Override the root-level .gitignore
2-
!*
3-
4-
# Build output
5-
**/build/**
6-
**/target/**
7-
# Clib dependencies
8-
**/deps/**
9-
# VS Code
10-
**/.vscode/**
11-
# Test binaries
12-
*.test
13-
# Test coverage information files
14-
*.gcda
15-
*.gcda.info
16-
*.gcno
17-
# Debugger outputs
18-
*.bin
19-
*.cap
20-
*.trace
21-
# Output screenshots
22-
/*.bmp
23-
24-
# Prerequisites
25-
*.d
26-
27-
# Object files
28-
*.o
29-
*.ko
30-
*.obj
31-
*.elf
32-
33-
# Linker output
34-
*.ilk
35-
*.map
36-
*.exp
37-
38-
# Precompiled Headers
39-
*.gch
40-
*.pch
41-
42-
# Libraries
43-
*.lib
44-
*.a
45-
*.la
46-
*.lo
47-
48-
# Shared objects (inc. Windows DLLs)
49-
*.dll
50-
*.so
51-
*.so.*
52-
*.dylib
53-
54-
# Executables
55-
*.exe
56-
*.out
57-
*.app
58-
*.i*86
59-
*.x86_64
60-
*.hex
61-
62-
# Debug files
63-
*.dSYM/
64-
*.su
65-
*.idb
66-
*.pdb
67-
68-
# Kernel Module Compile Results
69-
*.mod*
70-
*.cmd
71-
.tmp_versions/
72-
modules.order
73-
Module.symvers
74-
Mkfile.old
75-
dkms.conf
76-
77-
*.log
78-
*.swp
1+
!bin/

0 commit comments

Comments
 (0)