mirror of
https://github.com/kristoferssolo/transmission-rpc.git
synced 2025-10-21 20:10:37 +00:00
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.
29 lines
727 B
TOML
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"] }
|