From d0f9161188e70b1144db4739d97e20be872e06aa Mon Sep 17 00:00:00 2001 From: Leonard Kugis Date: Mon, 6 Oct 2025 15:35:57 +0200 Subject: Implemented as Makefile project --- Cargo.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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 + -- cgit v1.2.3