Initial commit
This commit is contained in:
commit
8c6f7d4379
21 changed files with 4184 additions and 0 deletions
24
Cargo.toml
Normal file
24
Cargo.toml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue