-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
31 lines (29 loc) · 926 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 = "deluge-rpc"
version = "0.8.0"
authors = ["The0x539 <[email protected]>"]
edition = "2018"
license = "GPL-3.0-only"
description = "Client bindings for the Deluge RPC API."
repository = "https://github.com/The0x539/rust-deluge-rpc"
[features]
default = ["trust-infohashes"]
trust-infohashes = ["hashers"]
[dependencies]
serde = { version = "1.0.137", features = ["derive"] }
serde-value = "0.7.0"
tokio = { version = "1.19.2", features = ["net", "rt-multi-thread", "io-util", "sync", "macros", "parking_lot"] }
tokio-rustls = "0.23.4"
rustls = { version = "0.20.6", features = ["dangerous_configuration"] }
cloudflare-zlib = "0.2.9"
deluge-rpc-macro = "0.6.2"
hex = { version = "0.4.3", features = ["serde"] }
rencode = "0.2.1"
regex = "1.5.6"
enum-kinds = "0.5.1"
num_enum = "0.5.7"
fnv = "1.0.7"
futures = "0.3.21"
hashers = { version = "1.0.1", optional = true}
thiserror = "1.0.31"
once_cell = "1.12.0"