aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorAkshay <[email protected]>2022-08-02 15:20:46 +0100
committerAkshay <[email protected]>2022-08-02 15:27:12 +0100
commitcfc70207996e202edbb577b2ad97a61ba9eb0eaa (patch)
tree97a3f25c3016766d6456efb748d48cbc6c525a47 /Cargo.toml
parentefd96e8df6805a45aaf5822141dee11c642b51ae (diff)
add textual comparisonHEADmaster
structural comparison helps detect a vast majority of duplicates, but it has a few false positives when files contain only trivia. textual similarity can help detect and eliminate those false positives.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 579c1c4..2803272 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -17,3 +17,4 @@ tree-sitter = "0.20"
17itertools = "0.10" 17itertools = "0.10"
18rayon = "1.5" 18rayon = "1.5"
19thiserror = "1.0" 19thiserror = "1.0"
20simhash = "0.2"