From c99d961272acca5a504d2adced4e68b603aeb1df Mon Sep 17 00:00:00 2001 From: DylanCa Date: Fri, 29 Dec 2023 02:49:26 +0100 Subject: [PATCH] Added Cargo.toml to project --- Cargo.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Cargo.toml diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..90f335d --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "rust-discord-activity" +version = "0.1.0" +edition = "2021" + +# 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" + +[dependencies.uuid] +version = "1.6.1" +features = ["v4"]