2022-02-06 15:47:59 +00:00
|
|
|
[package]
|
2022-02-11 17:44:08 +00:00
|
|
|
name = "reminder_web"
|
2022-02-06 15:47:59 +00:00
|
|
|
version = "0.1.0"
|
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"] }
|
|
|
|
serenity = { git = "https://github.com/serenity-rs/serenity", branch = "next", default-features = false, features = ["builder", "cache", "client", "gateway", "http", "model", "utils", "rustls_backend"] }
|
|
|
|
oauth2 = "4"
|
|
|
|
log = "0.4"
|
|
|
|
reqwest = "0.11"
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "macros", "mysql", "chrono"] }
|
|
|
|
chrono = "0.4"
|
|
|
|
chrono-tz = "0.5"
|
2022-03-05 19:43:02 +00:00
|
|
|
lazy_static = "1.4.0"
|
2022-03-19 17:41:34 +00:00
|
|
|
rand = "0.7"
|