From 5d689e0444b76653a82ee4dd9f94db68fda66702 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Tue, 14 Jul 2020 11:50:49 +0200 Subject: [PATCH] ignore .cargo in Cargo.toml Signed-off-by: Wolfgang Bumiller --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f6bc29b..737cc5c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "AGPL-3" description = "Include/exclude path list implementation with git-like globbing support." -exclude = [ "build", "debian" ] +exclude = [ ".cargo", "build", "debian" ] [dependencies] bitflags = "1.2"