made bot in four hours

can run roll and random
This commit is contained in:
2025-04-19 20:22:08 -04:00
commit a98f2498a3
20 changed files with 3394 additions and 0 deletions

21
Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "setzer"
version = "0.1.0"
edition = "2021"
[dependencies]
serenity = { version = "0.12.2", features = [
"client",
"gateway",
"rustls_backend",
"model",
"collector",
] }
tokio = { version = "1.41.0", features = ["macros", "rt-multi-thread"] }
reqwest = { version = "0.12.9", features = ["json", "rustls-tls"] }
tracing = "0.1.40"
dotenvy = "0.15.7"
rand = "0.8.5"
chrono = { version = "0.4.38" }
serde = "1.0.214"
serde_json = "1.0.132"