qbittorrent_web_api/Cargo.toml

21 lines
600 B
TOML
Raw Permalink Normal View History

2022-07-10 17:06:19 +02:00
[package]
name = "qbittorrent-web-api"
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-08-06 20:30:47 +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-10 17:06:19 +02:00
[dependencies]
2022-08-13 20:15:09 +02:00
reqwest = { version = "0.11", features = ["json", "multipart"] }
tokio = { version = "1.19", features = ["full"] }
2022-08-13 21:20:06 +02:00
qbittorrent-web-api-gen = { path = "./qbittorrent-web-api-gen", version = "0.6.4" }
2022-08-13 20:15:09 +02:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_repr = "0.1"
thiserror = "1.0"
2022-07-10 17:27:31 +02:00
[workspace]
2022-07-19 22:36:52 +02:00
members = ["qbittorrent-web-api-gen"]