Explicitly list which files to include in the cargo package.
Some checks failed
rust-build Build rust-build has failed
rust-test Build rust-test has failed
rustfmt Build rustfmt has succeeded

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.
This commit is contained in:
Tom Alexander 2023-08-11 00:11:54 -04:00
parent 012c192aed
commit df5ee5af16
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -10,6 +10,12 @@ readme = "README.md"
keywords = ["emacs", "org-mode"] keywords = ["emacs", "org-mode"]
categories = ["parsing"] categories = ["parsing"]
resolver = "2" resolver = "2"
include = [
"LICENSE",
"**/*.rs",
"Cargo.toml",
"tests/*"
]
[lib] [lib]
name = "organic" name = "organic"