transmission-rpc/Cargo.toml
Nick Zana c75029f59e Move tokio to dev and add rt-multi-threaded
Tokio is not needed in the main library and is only used for tests, and
thus can be safely moved to a dev-dependency.

The rt-multi-threaded feature of tokio is needed for some examples.
2021-03-13 18:40:54 -05:00

29 lines
727 B
TOML

[package]
name = "transmission-rpc"
version = "0.3.3"
authors = ["red <red.avtovo@gmail.com>"]
edition = "2018"
repository = "https://github.com/j0rsa/transmission-rpc"
license = "MIT"
readme = "README.md"
description = "Transmission JRPC client"
keywords = ["transmission", "torrent", "jrpc"]
categories = ["api-bindings"]
include = [
"**/*.rs",
"Cargo.toml",
]
[dependencies]
reqwest = { version = "0.11.0", features = ["json", "rustls-tls"], default-features = false }
serde = { version = "1.0", features = ["derive"] }
rustc-serialize = "0.3.24"
enum-iterator = "0.6.0"
dotenv = "0.15.0"
log = "0.4.8"
env_logger = "0.8.2"
[dev-dependencies]
tokio = { version = "1.2", features = ["macros", "rt-multi-thread"] }