forked from VanillaBrooks/qbittorrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (26 loc) · 797 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "qbittorrent"
version = "0.2.0"
authors = ["VanillaBrooks <[email protected]>"]
edition = "2018"
description = "qbittorrent web api implementation"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.104", features= ["derive"] }
serde_json = "1.0.44"
derive_builder = "0.11.2"
reqwest = { version = "0.11.11", features = ["json"] }
serde_urlencoded = "0.7.1"
derive-getters = "0.2.0"
async-trait = "0.1.22"
thiserror = "1.0.11"
tokio = { version= "1.19.2", features=["macros", "rt"], optional=true }
[dev-dependencies]
tokio = {version= "1.19.2", features=["macros", "rt"]}
[features]
default = []
tokio = ["dep:tokio"]
[[bin]]
name = "main"
required-features = ["tokio"]