Issue Suggestion - Exclude unnecessary files from the crate (#60)

This commit is contained in:
You Guang (Alan Matthew) 2023-05-17 04:18:36 +08:00 committed by GitHub
parent d7cbdc2658
commit 8d825ad22e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 1 deletions

View File

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