Initial commit

This commit is contained in:
파링 2026-01-05 22:54:32 +09:00
commit 8c6f7d4379
Signed by: paring
SSH key fingerprint: SHA256:8uCHhCpn/gVOLEaTolmbub9kfM6XBxWkIWmHxUZoWWk
21 changed files with 4184 additions and 0 deletions

24
Cargo.toml Normal file
View file

@ -0,0 +1,24 @@
[package]
name = "paringboard"
version = "0.1.0"
edition = "2024"
build = "build.rs"
[[bin]]
name = "paringboard"
path = "src/bot/main.rs"
[dependencies]
anyhow = "1.0.100"
dashmap = "6.1.0"
figment = { version = "0.10.19", features = ["toml", "env"] }
rhai = "1.23.6"
secrecy = { version = "0.10", features = ["serde"] }
serde = { version = "1.0.228", features = ["derive"] }
serenity = { git = "https://github.com/serenity-rs/serenity", branch = "next", features = [
"unstable",
] }
sqlx = { version = "0.8.6", features = ["runtime-tokio", "postgres"] }
tokio = { version = "1.49.0", features = ["full"] }
tracing = "0.1.44"
tracing-subscriber = "0.3.22"