# 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 = "backup-deduplicator" version = "0.3.0" description = """ A tool to deduplicate backups. It builds a hash tree of all files and folders in the target directory. Optionally also traversing into archives like zip or tar files. The hash tree is then used to find duplicate files and folders.""" homepage = "https://github.com/0xCCF4/BackupDeduplicator" documentation = "https://docs.rs/backup-deduplicator" readme = "README.md" keywords = [ "archive-management", "file", "deduplication", "cleanup", ] license = "GPL-3.0-or-later" repository = "https://github.com/0xCCF4/BackupDeduplicator" [dependencies.anyhow] version = "1.0.82" [dependencies.clap] version = "4.5.4" features = ["derive"] [dependencies.const_format] version = "0.2.32" [dependencies.env_logger] version = "0.11.2" [dependencies.exitcode] version = "1.1.2" [dependencies.file-id] version = "0.2.1" [dependencies.filetime] version = "0.2.23" [dependencies.log] version = "0.4.20" [dependencies.num_cpus] version = "1.16.0" [dependencies.serde] version = "1.0.197" features = [ "derive", "rc", ] [dependencies.serde_json] version = "1.0.115" [dependencies.sha1] version = "0.11.0-pre.3" optional = true [dependencies.sha2] version = "0.10.8" optional = true [dependencies.xxhash-rust] version = "0.8.10" features = [ "xxh32", "xxh64", ] optional = true [features] default = [ "hash-sha1", "hash-sha2", "hash-xxh", ] hash-sha1 = ["dep:sha1"] hash-sha2 = ["dep:sha2"] hash-xxh = ["dep:xxhash-rust"]