/ .gitignore
.gitignore
 1  /target
 2  /.cargo
 3  **/*.rs.bk
 4  *.pdb
 5  Cargo.lock
 6  
 7  # IDE
 8  .vscode/
 9  .idea/
10  *.swp
11  *.swo
12  *~
13  
14  # Build artifacts
15  *.o
16  *.a
17  *.so
18  *.dylib
19  *.dll
20  
21  # Test artifacts
22  *.profraw
23  *.profdata
24  
25  # sccache
26  .sccache
27  
28  # Moonrepo
29  .moon/
30  
31  # moon
32  .moon/cache
33  .moon/docker
34  
35  # Runtime artifacts
36  .ralph/
37  .agent/
38  
39  # Test coverage reports
40  tarpaulin-report.html