Skip to content

Commit

Permalink
added dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Rayrsn committed Aug 24, 2022
1 parent 7a632fa commit 846de89
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "discord-rpc-cli"
version = "1.4.1"
version = "1.4.2"
edition = "2021"
authors = ["Rayr <https://rayr.ml/LinkInBio>"]
description = "A Discord RPC cli client written purely in Rust"
Expand All @@ -16,3 +16,5 @@ discord-rich-presence = "0.2.2"
clap = { version = "3.0.14", features = ["derive"] }
colored = "2.0.0"
user-idle = "0.5.1"
serde_json = "1.0"
uuid = { version = "0.8", features = ["v4"] }
3 changes: 3 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ use clap::StructOpt;
use discord_rich_presence::{activity::{self, Activity,Party,Secrets}, DiscordIpcClient, DiscordIpc};
use colored::*;
use user_idle::UserIdle;
use uuid::Uuid;
use serde_json::json;


mod cli;

Expand Down

0 comments on commit 846de89

Please sign in to comment.