From df5ee5af16cde0dca63023c40670bb387c5aa865 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Fri, 11 Aug 2023 00:11:54 -0400 Subject: [PATCH] Explicitly list which files to include in the cargo package. We are including a bunch of files that are not needed for running the rust code. This excludes them to be a better citizen to both crates.io and all users of this package. --- Cargo.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index e969cd0..b6f855c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,6 +10,12 @@ readme = "README.md" keywords = ["emacs", "org-mode"] categories = ["parsing"] resolver = "2" +include = [ + "LICENSE", + "**/*.rs", + "Cargo.toml", + "tests/*" +] [lib] name = "organic"