Skip to content

Commit 91ec1af

Browse files
konardclaude
andcommitted
Add Rust-specific entries to .gitignore and fix README typo
- Add Rust build artifacts (target/, debug/) to .gitignore following Neo4jVSDoublets pattern - Add rustfmt backup files, mutants.out, and RustRover entries - Fix typo: "diffrence" → "difference" in README.md 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 79aa90b commit 91ec1af

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
debug
4+
target
5+
6+
# These are backup files generated by rustfmt
7+
**/*.rs.bk
8+
9+
# MSVC Windows builds of rustc generate these, which store debugging information
10+
*.pdb
11+
12+
# Generated by cargo mutants
13+
# Contains mutation testing data
14+
**/mutants.out*/
15+
16+
# RustRover
17+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
18+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
19+
# and can be added to the global gitignore or merged into this file. For a more nuclear
20+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
21+
#.idea/
22+
123
## Ignore Visual Studio temporary files, build results, and
224
## files generated by popular Visual Studio add-ons.
325
##

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Both databases used to store and retrieve doublet-links representation. To suppo
2222
## Results
2323
The results below represent the amount of time (ns) the operation takes per iteration.
2424
- First picture shows time in a pixel scale (for doublets just minimum value is shown, otherwise it will be not present on the graph).
25-
- Second picture shows time in a logarithmic scale (to see diffrence clearly, because it is around 2-3 orders of magnitude).
25+
- Second picture shows time in a logarithmic scale (to see difference clearly, because it is around 2-3 orders of magnitude).
2626

2727
### Rust
2828
![Image of Rust benchmark (pixel scale)](https://github.com/linksplatform/Comparisons.PostgreSQLVSDoublets/blob/main/Docs/bench_rust.png?raw=true)

0 commit comments

Comments
 (0)