rustdupe 0.2.0

Smart duplicate file finder with interactive TUI
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"
rust-version = "1.85"
name = "rustdupe"
version = "0.2.0"
authors = ["RustDupe Team"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Smart duplicate file finder with interactive TUI"
readme = "README.md"
keywords = [
    "duplicate",
    "files",
    "deduplication",
    "tui",
    "cli",
]
categories = [
    "command-line-utilities",
    "filesystem",
]
license = "MIT"
repository = "https://github.com/MasuRii/RustDupe"

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

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

[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"

[[test]]
name = "error_tests"
path = "tests/error_tests.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "property_tests"
path = "tests/property_tests.rs"

[[test]]
name = "reference_tests"
path = "tests/reference_tests.rs"

[[test]]
name = "script_tests"
path = "tests/script_tests.rs"

[[test]]
name = "tui_tests"
path = "tests/tui_tests.rs"

[dependencies.anyhow]
version = "1"

[dependencies.askama]
version = "0.12"

[dependencies.blake3]
version = "1"

[dependencies.bytesize]
version = "2"

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

[dependencies.clap]
version = "4"
features = [
    "derive",
    "env",
    "unicode",
]

[dependencies.crossterm]
version = "0.28"

[dependencies.csv]
version = "1"

[dependencies.ctrlc]
version = "3.4"
features = ["termination"]

[dependencies.directories]
version = "5"

[dependencies.env_logger]
version = "0.11"

[dependencies.ignore]
version = "0.4"

[dependencies.indicatif]
version = "0.17"

[dependencies.jwalk]
version = "0.8"

[dependencies.log]
version = "0.4"

[dependencies.ratatui]
version = "0.28"
features = ["crossterm"]
default-features = false

[dependencies.rayon]
version = "1.10"

[dependencies.regex]
version = "1"

[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]

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

[dependencies.serde_json]
version = "1"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1"

[dependencies.trash]
version = "5"

[dependencies.unicode-normalization]
version = "0.1"

[dependencies.walkdir]
version = "2"

[dev-dependencies.filetime]
version = "0.2"

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

[dev-dependencies.tempfile]
version = "3"

[build-dependencies.embed-resource]
version = "2"

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

[profile.release-fast]
lto = "fat"
inherits = "release"