Exclude unnecessary files from the crate

This commit is contained in:
You Guang 2023-05-15 16:07:46 +08:00
parent d7cbdc2658
commit 0a80fda003

View File

@ -13,7 +13,20 @@ categories = ["network-programming"]
exclude = [
"vendor/examples/*",
"vendor/docs/*"
"vendor/docs/*",
"vendor/coverage/*",
"vendor/pkg/*",
"vendor/scripts/*",
"vendor/tests/*",
"vendor/ci/*",
"vendor/cmd/*",
"vendor/mobile/*",
"vendor/library/*",
"**/*.md",
"**/*.lock",
"**/*.nix",
"**/Makefile",
"**/Dockerfile",
]
[lib]