moover_rust/Cargo.toml

28 lines
756 B
TOML
Raw Normal View History

2023-07-05 09:06:04 +00:00
[package]
name = "moover_rust"
2024-02-18 11:30:02 +00:00
version = "0.3.0"
2023-07-05 09:06:04 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-09-23 19:15:19 +00:00
rand = "0.8.5"
2024-09-28 16:39:05 +00:00
anyhow = "1.0.89"
tokio-cron-scheduler = "0.13.0"
2023-07-05 09:06:04 +00:00
dotenv = "0.15.0"
2023-09-23 19:15:19 +00:00
# poise = "0.5.5"
2024-09-28 16:39:05 +00:00
serenity = { version = "0.12.2", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "http", "cache"] }
# serenity_utils = "0.7.0"
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
regex = "1.10.6"
chrono = "0.4.38"
sqlx = {version="0.8.2", features=["runtime-tokio", "sqlite"]}
json = "0.12.4"
2024-09-28 16:39:05 +00:00
reqwest = "0.12.7"
2024-02-18 11:14:02 +00:00
form_urlencoded = "1.2.1"
tenorv2 = { path = "./tenor-v2/tenorv2" }
2024-02-14 12:22:29 +00:00
[features]
DEBUG = []
2024-02-14 12:44:29 +00:00
RELEASE = []