dedcore 0.1.0

A high-performance deduplication tool
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "dedcore"
version = "0.1.0"
authors = ["keirsalterego"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A high-performance deduplication tool"
readme = "README.md"
keywords = [
    "deduplication",
    "duplicate",
    "files",
    "hash",
    "similarity",
]
categories = [
    "command-line-utilities",
    "filesystem",
    "development-tools",
]
license = "MIT"
repository = "https://github.com/keirsalterego/dedcore"

[lib]
name = "dedcore"
path = "src/lib.rs"

[[bin]]
name = "dedcore"
path = "src/main.rs"

[[bench]]
name = "file_scanning"
path = "benches/file_scanning.rs"
harness = false

[[bench]]
name = "hashing"
path = "benches/hashing.rs"
harness = false

[dependencies.anyhow]
version = "1.0.95"

[dependencies.blake3]
version = "1.5.0"

[dependencies.chrono]
version = "0.4.41"
features = ["serde"]

[dependencies.clap]
version = "4.5.40"
features = ["derive"]

[dependencies.crossterm]
version = "0.25.0"
features = ["event-stream"]

[dependencies.dirs]
version = "5.0.1"

[dependencies.glob]
version = "0.3.0"

[dependencies.hex]
version = "0.4"

[dependencies.image]
version = "0.25.6"
features = [
    "png",
    "jpeg",
    "gif",
    "webp",
    "tiff",
    "bmp",
    "hdr",
]

[dependencies.img_hash]
version = "3.2.0"

[dependencies.indicatif]
version = "0.17.11"
features = ["rayon"]

[dependencies.inquire]
version = "0.6.2"
features = ["date"]

[dependencies.memmap2]
version = "0.9"

[dependencies.rayon]
version = "1.10.0"

[dependencies.regex]
version = "1.11.1"

[dependencies.serde]
version = "1.0.217"
features = ["derive"]

[dependencies.serde_json]
version = "1.0.108"

[dependencies.sha2]
version = "0.10.9"

[dependencies.sha256]
version = "1.1.1"

[dependencies.sqlite]
version = "0.37.0"

[dependencies.tempfile]
version = "3.10"

[dependencies.textdistance]
version = "1.1.1"

[dependencies.thiserror]
version = "2.0.12"

[dependencies.tokio]
version = "1.46.1"
features = ["full"]

[dependencies.walkdir]
version = "2.5.0"

[dependencies.xxhash-rust]
version = "0.8.15"
features = ["xxh3"]

[dev-dependencies.criterion]
version = "0.4"
features = ["html_reports"]

[dev-dependencies.pretty_assertions]
version = "1.3.0"

[dev-dependencies.proptest]
version = "1.1.0"

[dev-dependencies.rand]
version = "0.9.1"

[profile.bench]
debug = 2

[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true