2022-02-06 15:47:59 +00:00
|
|
|
[package]
|
2022-02-11 17:44:08 +00:00
|
|
|
name = "reminder_web"
|
2023-11-12 10:00:46 +00:00
|
|
|
version = "0.1.4"
|
2022-02-11 17:44:08 +00:00
|
|
|
authors = ["jellywx <judesouthworth@pm.me>"]
|
|
|
|
edition = "2018"
|
2022-02-06 15:47:59 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-20 17:09:50 +00:00
|
|
|
rocket = { version = "0.5.0", features = ["tls", "secrets", "json"] }
|
|
|
|
rocket_dyn_templates = { version = "0.1.0", features = ["tera"] }
|
2024-01-06 19:48:17 +00:00
|
|
|
serenity = { version = "0.12", default-features = false, features = ["builder", "cache", "client", "gateway", "http", "model", "utils", "rustls_backend"] }
|
2022-02-11 17:44:08 +00:00
|
|
|
oauth2 = "4"
|
|
|
|
log = "0.4"
|
2024-01-06 19:48:17 +00:00
|
|
|
reqwest = { version = "0.11", features = ["json"] }
|
2022-02-11 17:44:08 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-09-23 17:29:25 +00:00
|
|
|
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "macros", "mysql", "chrono", "json"] }
|
2022-02-11 17:44:08 +00:00
|
|
|
chrono = "0.4"
|
2023-09-23 17:29:25 +00:00
|
|
|
chrono-tz = "0.8"
|
2022-03-05 19:43:02 +00:00
|
|
|
lazy_static = "1.4.0"
|
2023-09-23 17:29:25 +00:00
|
|
|
rand = "0.8"
|
2022-03-26 20:03:58 +00:00
|
|
|
base64 = "0.13"
|
2023-09-23 17:29:25 +00:00
|
|
|
csv = "1.2"
|
2023-10-29 18:00:45 +00:00
|
|
|
prometheus = "0.13.3"
|
2024-01-06 19:48:17 +00:00
|
|
|
secrecy = "0.8.0"
|