transmission-rpc/Cargo.toml
dependabot[bot] e82d71adc7 Update env_logger requirement from 0.9.1 to 0.10.0
Updates the requirements on [env_logger](https://github.com/rust-cli/env_logger) to permit the latest version.
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rust-cli/env_logger/compare/v0.9.1...v0.10.0)

---
updated-dependencies:
- dependency-name: env_logger
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-11-25 18:16:26 +01:00

32 lines
781 B
TOML

[package]
name = "transmission-rpc"
version = "0.4.0"
authors = ["red <red.avtovo@gmail.com>", "George Miao <gm@miao.dev>"]
edition = "2021"
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"]
[features]
sync = []
[dependencies]
reqwest = { version = "0.11.11", features = [
"json",
"rustls-tls",
], default-features = false }
serde = { version = "1.0.144", features = ["derive"] }
serde_repr = "0.1"
enum-iterator = "1.2.0"
log = "0.4.17"
[dev-dependencies]
env_logger = "0.10.0"
dotenvy = "0.15.5"
tokio = { version = "1.21.1", features = ["macros", "rt-multi-thread"] }