Initial commit

This commit is contained in:
alsaiduq-lab 2026-03-12 18:36:39 -06:00
commit 14210d0027
10 changed files with 4855 additions and 0 deletions

39
Cargo.toml Normal file
View file

@ -0,0 +1,39 @@
[package]
name = "ineffa"
version = "0.1.0"
edition = "2024"
[dependencies]
poise = { git = "https://github.com/serenity-rs/poise", branch = "current" }
serenity = { version = "0.12", default-features = false, features = [
"builder",
"cache",
"chrono",
"client",
"gateway",
"http",
"model",
"utils",
"rustls_backend",
] }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls",
"json",
] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
chrono = "0.4"
dashmap = "6"
anyhow = "1"
indexmap = { version = "2", features = ["serde"] }
urlencoding = "2"
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
[profile.release]
lto = true
codegen-units = 1
strip = true