diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..eaf6c8b --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,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 + |