31: Remove files when packaging r=JoelWachsler a=JoelWachsler



Co-authored-by: Joel Wachsler <JoelWachsler@users.noreply.github.com>
This commit is contained in:
bors[bot] 2022-07-23 01:08:17 +00:00 committed by GitHub
commit d55cf11d57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"