Crates.io | dircs |
lib.rs | dircs |
version | 0.1.10 |
source | src |
created_at | 2023-05-29 21:41:00.614158 |
updated_at | 2024-09-04 03:24:57.040391 |
description | A small cross-platform utility to get the hash of a file or directory. |
homepage | |
repository | https://github.com/ClementTsang/dircs |
max_upload_size | |
id | 877339 |
size | 55,467 |
A small cross-platform utility to get the hash of a file or directory. Comes with a variety of hash functions to choose from.
Note: I mostly wrote this for my own personal use, so there might be a lot of rough edges. Feel free to submit pull requests, feature requests, or bug reports, but my time working on this may be limited.
dircs
is on crates.io and can be installed with cargo
:
cargo install dircs --locked
As of writing, dircs
has been tested to build using Rust 1.70.0.
If you want to disable certain hash functions for whatever reason, you can control this by disabling the appropriate
feature for that hash function (see Cargo.toml
).
As of 0.1.9, binaries are generated on release through CI. These can be accessed in the releases, with the latest releases found here.
To use them, download the appropriate binary for your system and run the binary as needed.
$ dircs /your/path/here
/your/path/here -> 72ce3b5f2df28051cf7204712fe93de6b7b6d1f8e8fe5972b117a248423c290c
By default, dircs
will use BLAKE3 with memmapping disabled, and an automatic level of parallelism.
See more options by running dircs -h
.
Currently, the following hash functions are supported:
For a single file or a directory with just one file, dircs
will simply hash the file using the specified hash
function, and output the bytes as a hex string.
For a directory with multiple files, we do the following:
Thanks to: