2022-02-06 15:47:59 +00:00
|
|
|
[package]
|
2022-02-11 17:44:08 +00:00
|
|
|
name = "reminder_web"
|
2023-11-11 15:05:35 +00:00
|
|
|
version = "0.1.3"
|
2022-02-11 17:44:08 +00:00
|
|
|
authors = ["jellywx <judesouthworth@pm.me>"]
|
|
|
|
edition = "2018"
|
2022-02-06 15:47:59 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-02-11 17:44:08 +00:00
|
|
|
rocket = { git = "https://github.com/SergioBenitez/Rocket", branch = "master", features = ["tls", "secrets", "json"] }
|
|
|
|
rocket_dyn_templates = { git = "https://github.com/SergioBenitez/Rocket", branch = "master", features = ["tera"] }
|
2023-09-23 17:29:25 +00:00
|
|
|
serenity = { version = "0.11", 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"
|
|
|
|
reqwest = "0.11"
|
|
|
|
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"
|