discord-rpc-client/Cargo.toml

38 lines
909 B
TOML

[package]
name = "discord-rpc-client"
version = "0.5.0"
description = "A Rust client for Discord RPC."
authors = [
"Patrick Auernig <dev.patrick.auernig@gmail.com>",
"Michael Pfaff <michael@pfaff.dev>",
]
keywords = ["discord", "rpc", "ipc"]
license = "MIT"
readme = "README.md"
repository = "https://gitlab.com/valeth/discord-rpc-client.rs.git"
edition = "2021"
[features]
default = ["rich_presence"]
rich_presence = []
tokio-parking_lot = ["tokio/parking_lot"]
[dependencies]
async-trait = "0.1.52"
tokio = { version = "1.16", features = ["io-util", "net", "sync", "macros", "rt"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
byteorder = "1.0"
log = "0.4"
bytes = "1.1.0"
uuid = { version = "0.8", features = ["v4"] }
[dev-dependencies]
simplelog = "0.11"
tokio = { version = "1.16", features = [
"time",
"rt-multi-thread",
"macros",
"parking_lot",
] }