reminder-bot/web/Cargo.toml

22 lines
817 B
TOML
Raw Normal View History

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"] }
2022-04-19 14:23:27 +00:00
serenity = { version = "0.11.1", 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"] }
serde_json = "1.0"
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "macros", "mysql", "chrono", "json"] }
2022-02-11 17:44:08 +00:00
chrono = "0.4"
chrono-tz = "0.5"
lazy_static = "1.4.0"
2022-03-19 17:41:34 +00:00
rand = "0.7"
2022-03-26 20:03:58 +00:00
base64 = "0.13"