2022-07-10 17:06:19 +02:00
|
|
|
[package]
|
2022-07-10 18:32:55 +02:00
|
|
|
name = "qbittorrent-web-api-gen"
|
2022-08-13 21:20:06 +02:00
|
|
|
version = "0.6.4"
|
2022-07-10 17:06:19 +02:00
|
|
|
edition = "2021"
|
2022-07-11 03:41:51 +02:00
|
|
|
license = "MIT"
|
2022-07-10 18:41:57 +02:00
|
|
|
keywords = ["qbittorrent"]
|
2022-08-04 20:22:00 +02:00
|
|
|
repository = "https://github.com/jowax/qbittorrent-web-api"
|
2022-07-11 16:44:43 +02:00
|
|
|
description = "Generated web api for qBittorrent"
|
2022-07-23 02:56:55 +02:00
|
|
|
exclude = [
|
|
|
|
"*.txt",
|
|
|
|
"*.check",
|
|
|
|
"*.tree",
|
|
|
|
"tests",
|
|
|
|
"src/md_parser/token_tree_factory_tests",
|
|
|
|
"src/parser/group/method_tests",
|
|
|
|
]
|
2022-07-14 13:16:03 +02:00
|
|
|
# we use trybuild instead
|
|
|
|
autotests = false
|
2022-07-10 17:06:19 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
2022-07-14 13:16:03 +02:00
|
|
|
[[test]]
|
|
|
|
name = "tests"
|
|
|
|
path = "tests/tests.rs"
|
|
|
|
|
2022-07-10 17:06:19 +02:00
|
|
|
[dependencies]
|
2022-08-13 20:15:09 +02:00
|
|
|
syn = { version = "1.0", features = ["extra-traits"] }
|
|
|
|
quote = "1.0"
|
|
|
|
proc-macro2 = "1.0"
|
|
|
|
case = "1.0"
|
2022-07-10 17:06:19 +02:00
|
|
|
thiserror = "1.0.31"
|
2022-08-13 20:15:09 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
|
|
|
serde_repr = "0.1"
|
|
|
|
regex = "1.6"
|
2022-07-10 17:06:19 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-08-13 20:15:09 +02:00
|
|
|
trybuild = { version = "1.0", features = ["diff"] }
|
|
|
|
anyhow = "1.0"
|
|
|
|
tokio = { version = "1.19", features = ["full"] }
|
|
|
|
reqwest = { version = "0.11", features = ["json", "multipart"] }
|
|
|
|
pretty_assertions = "1.2"
|