mirror of
https://github.com/sreedevk/deduplicator.git
synced 2026-08-26 02:04:39 +00:00
37 lines
917 B
TOML
37 lines
917 B
TOML
[package]
|
|
name = "deduplicator"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
description = "find,filter,delete Duplicates"
|
|
license = "MIT"
|
|
authors = [
|
|
"Sreedev Kodichath <sreedevpadmakumar@gmail.com>",
|
|
"Valentin Bersier <vbersier@gmail.com>",
|
|
"Dhruva Sagar <dhruva.sagar@gmail.com>",
|
|
]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.68"
|
|
bytesize = "1.1.0"
|
|
chrono = "0.4.23"
|
|
clap = { version = "4.0.32", features = ["derive"] }
|
|
colored = "2.0.0"
|
|
dashmap = { version = "5.4.0", features = ["rayon"] }
|
|
fxhash = "0.2.1"
|
|
globwalk = "0.8.1"
|
|
indicatif = { version = "0.17.2", features = ["rayon"] }
|
|
itertools = "0.10.5"
|
|
memmap2 = "0.5.8"
|
|
pathdiff = "0.2.1"
|
|
prettytable-rs = "0.10.0"
|
|
rayon = "1.6.1"
|
|
unicode-segmentation = "1.10.0"
|
|
|
|
# generated by 'cargo dist init'
|
|
[profile.dist]
|
|
inherits = "release"
|
|
debug = true
|
|
split-debuginfo = "packed"
|