25 lines
699 B
TOML
25 lines
699 B
TOML
[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/paring-chan/serenity.git", branch = "fix/reaction-cache-next", features = [
|
|
"unstable",
|
|
"cache",
|
|
] }
|
|
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"
|