22 lines
618 B
TOML
22 lines
618 B
TOML
[package]
|
|
name = "qbittorrent-web-api"
|
|
version = "0.2.7"
|
|
edition = "2021"
|
|
license-file = "LICENSE"
|
|
keywords = ["qbittorrent"]
|
|
repository = "https://github.com/JoelWachsler/qbittorrent-web-api"
|
|
description = "Auto generated api for qBittorrent"
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.11.11", features = ["json", "multipart"] }
|
|
tokio = { version = "1.19.2", features = ["full"] }
|
|
qbittorrent-web-api-gen = { path = "./qbittorrent-web-api-gen", version = "0.2.6" }
|
|
serde = { version = "1.0.138", features = ["derive"] }
|
|
serde_json = "1.0.82"
|
|
thiserror = "1.0.31"
|
|
|
|
[workspace]
|
|
members = [
|
|
"qbittorrent-web-api-gen",
|
|
]
|