Remove files when packaging

This commit is contained in:
Joel Wachsler 2022-07-23 00:56:55 +00:00
parent 2d7b0ddb3f
commit dac3a88de4
2 changed files with 9 additions and 4 deletions

View File

@ -37,6 +37,4 @@ async fn main() -> Result<()> {
Ok(())
}
```

View File

@ -6,7 +6,14 @@ license = "MIT"
keywords = ["qbittorrent"]
repository = "https://github.com/JoelWachsler/qbittorrent-web-api"
description = "Generated web api for qBittorrent"
exclude = ["*.txt", "tests", "src/md_parser/token_tree_factory_tests"]
exclude = [
"*.txt",
"*.check",
"*.tree",
"tests",
"src/md_parser/token_tree_factory_tests",
"src/parser/group/method_tests",
]
# we use trybuild instead
autotests = false