-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (33 loc) · 996 Bytes
/
Cargo.toml
File metadata and controls
34 lines (33 loc) · 996 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
31
32
33
34
[package]
name = "revocatio"
version = "0.1.0"
edition = "2021"
license-file = "LICENSE"
description = "A health monitor for your backups"
homepage = "https://sr.ht/~reesmichael1/revocatio"
repository = "https://git.sr.h/~reesmichael1/revocatio"
documentation = "https://man.sr.ht/~reesmichael1/revocatio"
readme = "README.md"
keywords = ["backups", "automation", "monitoring"]
categories = ["command-line-utilities"]
exclude = [".build.yml", "resources"]
[dependencies]
chrono = "0.4.19"
directories = "4.0.1"
env_logger = "0.9.0"
flate2 = "1.0"
gix = "0.58.0"
gumdrop = "0.8.1"
# See https://users.rust-lang.org/t/psa-libz-sys-on-musl-no-longer-links-statically-by-default-unless-cross-compiling/59300
libz-sys = { "version" = "1.1.8", features = ["static"] }
log = "0.4.0"
regex = "1.5.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.59"
serde_regex = "1.1.0"
serde_yaml = "0.8"
subprocess = "0.2.8"
tar = "0.4.40"
tempfile = "3.3.0"
thiserror = "1.0.30"
xz = "0.1.0"