-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 721 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (25 loc) · 721 Bytes
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
28
29
30
[package]
name = "verify-archive"
version = "0.6.1"
edition = "2021"
rust-version = "1.56"
repository = "https://github.com/reckenrode/verify-archive"
categories = ["command-line-utilities"]
keywords = ["backups"]
license = "GPL-3.0-only"
readme = "README.md"
authors = ["Randy Eckenrode <randy@largeandhighquality.com>"]
description = "Compare Backblaze backup archives to the local filesystem for discrepancies"
[dependencies]
blake3 = "1.0"
clap = { version = "4.0", features = ["derive"] }
itertools = "0.10"
rayon = "1.5"
zip = "0.6"
[dev-dependencies]
tempfile = "3.2"
[profile.release]
incremental = false
debug = 0 # Set this to 1 or 2 to get more useful backtraces in debugger.
lto = true
codegen-units = 1