From 2a183c642b0127921eb72e6a497eab54a92d3657 Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Tue, 28 Jun 2022 20:39:43 -0400 Subject: [PATCH] other: exclude some files in Cargo.toml (#759) Excludes unnecessary files from being included in `Cargo.toml`. This mostly consists of files like mkdocs and asset files for the README. --- Cargo.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 0b3484e6..170bd6ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,6 +12,16 @@ documentation = "https://clementtsang.github.io/bottom/stable" readme = "README.md" default-run = "btm" build = "build.rs" +exclude = [ + ".all-contributorsrc", + ".github/", + ".markdownlint.json", + "assets/", + "codecov.yml", + "deployment/", + "docs/", + "sample_configs/" +] [[bin]] name = "btm"