blob: 35907a20698b419ba8ba8f97706921e71c4fa07f (
plain) (
tree)
|
|
[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"
|