[package]
edition = "2024"
name = "qbit"
version = "0.2.3"
authors = ["Mattress <mattress@mattress.no>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A wrapper for qBittorrent Web API"
documentation = "https://docs.rs/qbit"
readme = "README.md"
keywords = [
"qbit",
"qbittorrent",
"api",
"torrent",
]
categories = ["api-bindings"]
license = "MIT"
repository = "https://github.com/Mattress237/qbittorrent-webui-api"
[lib]
name = "qbit"
path = "src/lib.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[dependencies.bytes]
version = "1.11.1"
[dependencies.derive_builder]
version = "0.20.2"
[dependencies.reqwest]
version = "0.13.4"
features = [
"json",
"multipart",
"query",
"form",
]
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.serde_repr]
version = "0.1.20"
[dependencies.tokio]
version = "1.52.3"
features = ["sync"]
[dependencies.url]
version = "2.5.8"
[dev-dependencies.dotenv]
version = "0.15.0"
[dev-dependencies.rand]
version = "0.10.1"
[dev-dependencies.tokio]
version = "1.52.3"
features = [
"macros",
"rt-multi-thread",
]
[lints.clippy]
uninlined_format_args = "allow"