9d7a96f9416bf39bf215fa22a849025eb30df878none
AGENTS.mdTool: agents-md# AGENTS.md
## Project
`qbit-rs` is a Rust 2024 client for qBittorrent's Web API. It supports the
default `reqwest` backend and the optional `cyper` backend. Public behavior and
terminology should follow qBittorrent's official WebUI API documentation.
## Layout
- `src/lib.rs`: crate entry point, `Qbit`, shared request flow, and error types.
- `src/endpoint/`: API methods grouped by qBittorrent endpoint family. Each
file adds methods in an `impl Qbit` block.
- `src/model/`: request and response types gnone