-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
27 lines (25 loc) · 873 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "filesystem-hashing"
description = "Track Filesystem Integrity via Snapshots which contain a HashMap of the files and their corresponding hash signature from a specified directory"
version = "0.3.4"
edition = "2021"
authors = ["james@koonts.net"]
license = "MIT"
repository = "https://github.com/helloimalemur/filesystem-hashing"
keywords = ["file-integrity", "filesystem-integirty", "file-hashing", "folder-hashing", "filesystem-hashing"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
walkdir = "2.5.0"
sha3 = "0.11.0-pre.3"
bytes = "1.6.0"
rand = "0.9.0-alpha.1"
md5 = "0.7.0"
log = "0.4.21"
blake3 = "1.5.1"
chrono = "0.4.38"
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.116"
thiserror = "1.0.58"
threadpool = "1.8.1"
anyhow = "1.0.82"