-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
31 lines (28 loc) · 845 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "minty"
version = "2.0.3"
edition = "2021"
authors = ["mjehrhart <https://github.com/mjehrhart>"]
license = "MIT"
repository = "https://github.com/mjehrhart/minty"
description = "Extremely fast file deduplication app written in rust using parrellism with a rust gui."
keywords = ["search", "file", "filesystem", "deduplication", "find"]
#build="build.rs"
[dependencies]
eframe = "0.17.0"
egui = "0.17.0"
egui_extras = { version = "0.17.0", features = ["image", "svg"] }
image = { version = "0.24.1", default-features = false, features = ["png"] }
futures = "0.3" # for our async / await blocks
tokio = { version = "1.16.0", features = ["full"] }
rayon = "1.4.1"
walkdir = "2"
regex = "1"
chrono = "0.4"
md5 = "0.7.0"
blake3 = "1.3.1"
jwalk = "0.5"
rfd = "0.7.0"
byte-unit = "4.0.3"
fuzzy-matcher = "0.3.7"
home = "0.5.3"