28 lines
791 B
TOML
28 lines
791 B
TOML
[package]
|
|
name = "rust-discord-rpc"
|
|
description = "A lightweight library to control Discord Rich Presence"
|
|
version = "0.3.3"
|
|
edition = "2021"
|
|
authors = ["Dylan Cattelan <dylan.cattelan@gmail.com", "AmokDev <amokdevv@gmail.com>"]
|
|
license = "MIT"
|
|
keywords = ["discord", "activity", "rich", "presence"]
|
|
repository = "https://git.amok.dev/AmokDev/rust-discord-rpc"
|
|
categories = ["api-bindings", "gui", "multimedia"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
byteorder = "1.5.0"
|
|
serde_json = "1.0.108"
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
log = "0.4.20"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
named_pipe = "0.4.1"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
|
|
|
|
[dependencies.uuid]
|
|
version = "1.6.1"
|
|
features = ["v4"]
|