aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: eaf6c8bf35825a5d70eb1cd9eec04fa9235603f0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "squashr"
version = "1.0.0"
edition = "2021"
license = "GNU AGPLv3"
description = "Manage backups based on SquashFS, OverlayFS and LUKS"
repository = "https://git.kug.is/squashr.git"

[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
itertools = "0.12"
regex = "1"
walkdir = "2"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
rusqlite = { version = "0.31", features = ["bundled"] }
libc = "0.2"

[profile.release]
lto = true
codegen-units = 1