2020-08-06 14:22:13 +00:00
|
|
|
[package]
|
2020-08-06 18:18:30 +00:00
|
|
|
name = "reminder_rs"
|
2020-08-06 14:22:13 +00:00
|
|
|
version = "0.1.0"
|
2020-08-06 18:18:30 +00:00
|
|
|
authors = ["jellywx <judesouthworth@pm.me>"]
|
2020-08-06 14:22:13 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2020-09-03 23:29:19 +00:00
|
|
|
serenity = "0.9.0-rc.0"
|
2020-08-06 14:22:13 +00:00
|
|
|
dotenv = "0.15"
|
|
|
|
tokio = {version = "0.2.19", features = ["fs", "sync", "process", "io-util"]}
|
|
|
|
reqwest = "0.10.6"
|
2020-08-22 00:24:12 +00:00
|
|
|
sqlx = {version = "0.3.5", default-features = false, features = ["runtime-tokio", "macros", "mysql", "bigdecimal", "chrono"]}
|
2020-08-06 14:22:13 +00:00
|
|
|
regex = "1.3.9"
|
|
|
|
async-trait = "0.1.36"
|
2020-08-07 00:02:01 +00:00
|
|
|
log = "0.4.11"
|
2020-08-18 19:09:21 +00:00
|
|
|
chrono = "0.4"
|
|
|
|
chrono-tz = "0.5"
|
2020-08-26 17:26:28 +00:00
|
|
|
lazy_static = "1.4.0"
|
2020-08-06 18:18:30 +00:00
|
|
|
|
|
|
|
[dependencies.regex_command_attr]
|
|
|
|
path = "./regex_command_attr"
|