moover_rust/Cargo.toml

26 lines
722 B
TOML
Raw Normal View History

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-14 12:22:29 +00:00
# tokio-cron-scheduler = "0.9.4"
tokio_schedule = "0.3.1"
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
# sqlite = "0.32.0"
# async-sqlite = { version = "0.2.1", default-features = false }
async-rusqlite = "0.4.0"
chrono = "0.4.31"
[features]
DEBUG = []
RELEASE = []