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(()) Ok(())
} }
``` ```

View File

@ -6,7 +6,14 @@ license = "MIT"
keywords = ["qbittorrent"] keywords = ["qbittorrent"]
repository = "https://github.com/JoelWachsler/qbittorrent-web-api" repository = "https://github.com/JoelWachsler/qbittorrent-web-api"
description = "Generated web api for qBittorrent" 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 # we use trybuild instead
autotests = false autotests = false
@ -18,7 +25,7 @@ name = "tests"
path = "tests/tests.rs" path = "tests/tests.rs"
[dependencies] [dependencies]
syn = { version = "1.0.98", features = ["extra-traits"]} syn = { version = "1.0.98", features = ["extra-traits"] }
quote = "1.0.20" quote = "1.0.20"
proc-macro2 = "1.0.40" proc-macro2 = "1.0.40"
case = "1.0.0" case = "1.0.0"