FrenBot/Cargo.toml
Joey Hines 67ff69aca0
Updated serenity version and added new commands
+ Added task.rs to handle periodic tasks
2024-01-15 16:53:17 -07:00

37 lines
824 B
TOML

[package]
name = "fren"
version = "0.5.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
config = "0.13.4"
structopt = "0.3.26"
reqwest = { version = "0.11.23", features = ["json"] }
serde = "1.0.195"
toml = "0.8.8"
rand = "0.8.5"
tera = "1.19.1"
ndm = "0.9.10"
regex = "1.10.2"
magick_rust = "0.19.1"
songbird = "0.4.0"
json = "0.12.4"
axum = "0.6.3"
axum-macros = "0.4.1"
sha3 = "0.10.8"
base64 = "0.21.7"
j_db = { version = "0.1.0", registry = "jojo-dev" }
chrono = { version = "0.4.31", features = ["serde"] }
chrono-tz = "0.8.5"
log = "0.4.20"
[dependencies.serenity]
version = "0.12.0"
features = ["framework", "standard_framework", "rustls_backend"]
[dependencies.tokio]
version = "1.35.1"
features = ["macros", "rt-multi-thread"]