2022-04-10 19:49:40 +02:00
|
|
|
[package]
|
|
|
|
name = "restic-integrity"
|
2022-08-15 13:09:02 +02:00
|
|
|
version = "1.2.1"
|
2022-04-10 19:49:40 +02:00
|
|
|
edition = "2021"
|
|
|
|
authors = [ "networkException" ]
|
|
|
|
description = "Check the integrity of a restic repository without unlocking it"
|
2022-08-15 13:05:11 +02:00
|
|
|
license = "BSD-2-Clause"
|
|
|
|
repository = "https://gitlab.upi.li/networkException/restic-integrity"
|
2022-04-10 19:49:40 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
clap = { version = "3.1.8", features = [ "derive" ] }
|
|
|
|
sha2 = "0.10.2"
|
|
|
|
rayon = "1.5.1"
|
|
|
|
indicatif = { version = "0.16.2", features = [ "rayon" ] }
|
2022-08-15 13:04:36 +02:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "restic-integrity"
|
|
|
|
path = "source/main.rs"
|