sys-compare/Cargo.toml

18 lines
696 B
TOML
Raw Normal View History

2024-03-18 19:33:42 +00:00
[package]
name = "sys-compare"
2024-04-15 02:33:30 +00:00
description = "Track Filesystem Integrity via 'Snapshots' which contain a HashMap of the files and their corresponding hash signature from a specified directory."
2024-04-15 03:09:36 +00:00
version = "0.1.8"
2024-03-18 19:33:42 +00:00
edition = "2021"
2024-03-29 20:16:25 +00:00
authors = ["james@koonts.net"]
license = "MIT"
repository = "https://github.com/helloimalemur/sys-compare"
keywords = ["file-integrity", "filesystem-integirty", "file-hashing", "folder-hashing", "filesystem-hashing"]
readme = "README.md"
2024-03-18 19:33:42 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-04-15 02:59:03 +00:00
filesystem-hashing = "0.2.8"
2024-03-28 23:05:09 +00:00
clap = { version = "4.5.4", features = ["derive"] }
2024-03-21 22:50:27 +00:00
whoami = "1.5.1"
2024-03-30 04:35:42 +00:00
anyhow = "1.0.81"