reminder-bot/postman/Cargo.toml

17 lines
555 B
TOML
Raw Normal View History

2022-02-06 15:47:59 +00:00
[package]
name = "postman"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["process", "full"] }
2023-09-23 15:18:33 +00:00
regex = "1.9"
2022-02-06 15:47:59 +00:00
log = "0.4"
chrono = "0.4"
2023-09-23 15:18:33 +00:00
chrono-tz = { version = "0.8", features = ["serde"] }
2022-02-06 15:47:59 +00:00
lazy_static = "1.4"
num-integer = "0.1"
serde = "1.0"
2023-09-23 15:18:33 +00:00
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "macros", "mysql", "bigdecimal", "chrono", "json"]}
serenity = { version = "0.11", default-features = false, features = ["builder", "cache", "client", "gateway", "http", "model", "utils", "rustls_backend"] }