cinderwatch 0.1.0
Some checks failed
ci/woodpecker/push/build Pipeline failed

This commit is contained in:
2026-06-03 21:38:26 +01:00
commit f03e47d9f5
13 changed files with 3775 additions and 0 deletions

15
Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "cinderwatch"
version = "0.1.0"
edition = "2021"
[dependencies]
serenity = { version = "0.12", features = ["rustls_backend", "model", "standard_framework", "gateway", "http", "client", "cache"] }
tokio = { version = "1", features = ["full"] }
rusqlite = { version = "0.31", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
dotenvy = "0.15"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
reqwest = { version = "0.12", features = ["rustls-tls"] }
futures = "0.3"