discordrpc/Cargo.toml

26 lines
690 B
TOML
Raw Permalink Normal View History

2022-02-12 21:59:16 +00:00
[package]
2022-02-13 12:03:22 +00:00
name = "discordrpc"
description = "Fast Discord RPC Client written in Rust"
2022-03-14 18:58:48 +00:00
license = "GPL-3.0"
2022-02-13 12:03:22 +00:00
authors = ["MedzikUser <nivua1fn@duck.com>"]
2022-02-24 16:38:11 +00:00
homepage = "https://github.com/MedzikUser/discord-rpc#readme"
2022-02-13 12:03:22 +00:00
repository = "https://github.com/MedzikUser/discord-rpc.git"
2022-02-13 12:31:44 +00:00
keywords = ["discord", "discord-rpc", "discordrpc", "discord-rpc-client"]
2022-02-13 12:03:22 +00:00
categories = ["command-line-utilities"]
2022-05-22 13:48:27 +00:00
version = "0.2.2"
2022-02-12 21:59:16 +00:00
edition = "2021"
2022-02-13 12:03:22 +00:00
[profile.release]
lto = true
panic = 'abort'
opt-level = 'z'
codegen-units = 1
2022-02-12 21:59:16 +00:00
[dependencies]
better-panic = "0.3.0"
2022-06-21 16:12:30 +00:00
clap = { version = "3.2.6", features = ["derive"] }
clap_complete = "3.2.2"
2022-06-21 21:42:54 +00:00
clap_mangen = "0.1.9"
2022-02-12 21:59:16 +00:00
colored = "2.0.0"
discord-rich-presence = "0.2.0"