-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (26 loc) · 805 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
32
[package]
name = "transmission-rpc-client"
version = "1.1.6"
description = "Client library for the Transmission BitTorrent daemon RPC API"
authors = ["Vincent Tavernier <[email protected]>"]
edition = "2021"
[[example]]
name = "simple"
required-features = ["client"]
[[example]]
name = "count_tracker_errors"
required-features = ["client"]
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
strum = { version = "0.25", features = ["derive"] }
# client features
reqwest = { version = "0.11", optional = true, features = ["json"] }
thiserror = { version = "1", optional = true }
url = { version = "2.5", optional = true }
[features]
default = []
client = ["reqwest", "thiserror", "url"]
[dev-dependencies]
anyhow = "1"
tokio = { version = "1.35", features = ["macros"] }