From 3f9376a46efeb53b494a8b5272fc15be6ca5869a Mon Sep 17 00:00:00 2001 From: Cara Salter Date: Fri, 7 Jan 2022 13:33:31 -0500 Subject: Initial Commit --- Cargo.toml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..35907a2 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,51 @@ +[package] +name = "glitch-ng" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +dotenv = "0.15" + +log = "0.4" +tracing = "0.1" +tracing-subscriber = "0.2" + +rand = "0.8" + +reqwest = "0.11" +chrono = { version = "0.4", features = ["serde"] } + +[dependencies.serenity] +version = "0.10" +default-features = false +features = [ + "rustls_backend", + "cache", + "client", + "framework", + "gateway", + "model", + "standard_framework", + "utils", +] + +[dependencies.poise] +git = "https://github.com/kangalioo/poise" +branch = "master" + +[dependencies.tokio] +version = "1" +features = [ + "macros", + "signal", + "rt-multi-thread" +] + +[dependencies.serde] +version = "1" +features = [ "derive" ] + +[dependencies.serde_json] +version = "1" -- cgit v1.2.3