working on the basic reminder commands

This commit is contained in:
jude
2020-09-11 17:41:15 +01:00
parent b7fd89e861
commit e222927858
7 changed files with 222 additions and 24 deletions

View File

@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
serenity = { version = "0.9.0-rc.1", features = ["collector"] }
dotenv = "0.15"
tokio = { version = "0.2.19", features = ["fs", "sync", "process", "io-util"] }
tokio = { version = "0.2.19", features = ["process"] }
reqwest = "0.10.6"
sqlx = { version = "0.3.5", default-features = false, features = ["runtime-tokio", "macros", "mysql", "bigdecimal", "chrono"] }
regex = "1.3.9"
@ -17,6 +17,9 @@ chrono = "0.4"
chrono-tz = "0.5"
lazy_static = "1.4.0"
num-integer = "0.1.43"
custom_error = "1.7.1"
serde = "1.0.115"
serde_json = "1.0.57"
[dependencies.regex_command_attr]
path = "./regex_command_attr"