From 1d7620cc65bab499e7d838f4eb9195d974d84e15 Mon Sep 17 00:00:00 2001 From: networkException Date: Mon, 15 Aug 2022 13:04:36 +0200 Subject: [PATCH] Cargo+Main: Move from /src to /source This avoids clashes with makepkg directories --- Cargo.toml | 4 ++++ {src => source}/main.rs | 0 2 files changed, 4 insertions(+) rename {src => source}/main.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index 59586dc..ca56100 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,3 +10,7 @@ clap = { version = "3.1.8", features = [ "derive" ] } sha2 = "0.10.2" rayon = "1.5.1" indicatif = { version = "0.16.2", features = [ "rayon" ] } + +[[bin]] +name = "restic-integrity" +path = "source/main.rs" diff --git a/src/main.rs b/source/main.rs similarity index 100% rename from src/main.rs rename to source/main.rs