Skip to content

Commit 295e174

Browse files
committed
Initial commit.
0 parents  commit 295e174

File tree

6 files changed

+603
-0
lines changed

6 files changed

+603
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
target/
2+
**/*.rs.bk

Cargo.lock

Lines changed: 232 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[package]
2+
name = "fddf"
3+
version = "1.0.0"
4+
authors = ["Georg Brandl <[email protected]>"]
5+
description = "Fast, parallelized duplicate file finder."
6+
repository = "https://github.com/birkenfeld/fddf"
7+
keywords = ["duplicate", "dupes"]
8+
license = "MIT/Apache-2.0"
9+
10+
[profile.release]
11+
lto = true
12+
13+
[dependencies]
14+
clap = "2.24.2"
15+
walkdir = "1.0.7"
16+
scoped-pool = "1.0.0"
17+
num_cpus = "1.4.0"
18+
rust-crypto = "0.2.36"
19+
fnv = "1.0.5"

0 commit comments

Comments
 (0)