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-10-12 22:17:47 +00:00
|
|
|
serenity = { version = "0.9.0-rc.2", features = ["collector", "rustls_backend"] }
|
2020-08-06 14:22:13 +00:00
|
|
|
dotenv = "0.15"
|
2020-10-18 16:26:07 +00:00
|
|
|
tokio = { version = "0.2", features = ["process"] }
|
|
|
|
reqwest = { version = "0.10", features = ["rustls-tls"] }
|
|
|
|
sqlx = { version = "0.3", default-features = false, features = ["runtime-tokio", "macros", "mysql", "bigdecimal", "chrono"] }
|
|
|
|
regex = "1.3"
|
|
|
|
async-trait = "0.1"
|
|
|
|
log = "0.4"
|
|
|
|
env_logger = "0.8"
|
2020-08-18 19:09:21 +00:00
|
|
|
chrono = "0.4"
|
|
|
|
chrono-tz = "0.5"
|
2020-10-18 16:26:07 +00:00
|
|
|
lazy_static = "1.4"
|
|
|
|
num-integer = "0.1"
|
|
|
|
num-traits = "0.2"
|
|
|
|
custom_error = "1.7"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
rand = "0.7"
|
|
|
|
Inflector = "0.11"
|
2020-08-06 18:18:30 +00:00
|
|
|
|
|
|
|
[dependencies.regex_command_attr]
|
|
|
|
path = "./regex_command_attr"
|