-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (44 loc) · 1020 Bytes
/
Cargo.toml
File metadata and controls
57 lines (44 loc) · 1020 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "pg-backup-manager"
version = "0.1.0"
edition = "2021"
[dependencies]
# CLI Framework
clap = { version = "4.5", features = ["derive", "cargo"] }
dialoguer = "0.11"
tabled = "0.15"
# Async Runtime
tokio = { version = "1.36", features = ["full"] }
# Database
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "sqlite", "uuid", "chrono"] }
uuid = { version = "1.7", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Cron
cron = "0.12"
# Encryption
aes-gcm = "0.10"
rand = "0.8"
base64 = "0.22"
# macOS Keychain
security-framework = "2.9"
# Error Handling
anyhow = "1.0"
thiserror = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Compression
flate2 = "1.0"
bzip2 = "0.4"
# Process Management
daemonize = "0.5"
# Utilities
dirs = "5.0"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true