2023-07-05 09:06:04 +00:00
|
|
|
[package]
|
|
|
|
name = "moover_rust"
|
|
|
|
version = "0.1.0"
|
|
|
|
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"
|
2023-07-07 10:16:25 +00:00
|
|
|
anyhow = "1.0.71"
|
2024-02-16 20:54:07 +00:00
|
|
|
tokio-cron-scheduler = "0.10.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-02-14 12:22:29 +00:00
|
|
|
serenity = { version = "0.12.0", default-features = false, features = ["client", "gateway", "rustls_backend", "model", "http", "cache"] }
|
2023-07-05 09:06:04 +00:00
|
|
|
serenity_utils = "0.7.0"
|
2023-07-07 10:16:25 +00:00
|
|
|
tokio = { version = "1.29.1", features = ["macros", "rt-multi-thread"] }
|
2023-07-14 14:41:16 +00:00
|
|
|
regex = "1.9.0"
|
2024-02-14 12:22:29 +00:00
|
|
|
chrono = "0.4.31"
|
2024-02-14 12:44:29 +00:00
|
|
|
sqlx = {version="0.7.3", features=["runtime-tokio", "sqlite"]}
|
2024-02-14 12:22:29 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
DEBUG = []
|
2024-02-14 12:44:29 +00:00
|
|
|
RELEASE = []
|