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