2020-08-06 14:22:13 +00:00
|
|
|
[package]
|
2020-08-06 18:18:30 +00:00
|
|
|
name = "reminder_rs"
|
2021-07-10 12:25:12 +00:00
|
|
|
version = "1.5.1"
|
2020-08-06 18:18:30 +00:00
|
|
|
authors = ["jellywx <judesouthworth@pm.me>"]
|
2020-08-06 14:22:13 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-04-12 21:33:02 +00:00
|
|
|
dashmap = "4.0"
|
2020-08-06 14:22:13 +00:00
|
|
|
dotenv = "0.15"
|
2021-01-17 00:39:48 +00:00
|
|
|
humantime = "2.1"
|
2021-02-21 12:26:49 +00:00
|
|
|
tokio = { version = "1", features = ["process", "full"] }
|
2021-02-11 23:30:44 +00:00
|
|
|
reqwest = "0.11"
|
2020-11-29 00:36:42 +00:00
|
|
|
regex = "1.4"
|
2020-10-18 16:26:07 +00:00
|
|
|
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"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_json = "1.0"
|
|
|
|
rand = "0.7"
|
|
|
|
Inflector = "0.11"
|
2020-12-17 19:59:02 +00:00
|
|
|
levenshtein = "1.0"
|
2021-09-02 22:38:12 +00:00
|
|
|
serenity = { git = "https://github.com/serenity-rs/serenity", branch = "next", features = ["collector", "unstable_discord_api"] }
|
2021-02-11 23:30:44 +00:00
|
|
|
sqlx = { version = "0.5", features = ["runtime-tokio-rustls", "macros", "mysql", "bigdecimal", "chrono"]}
|
2021-07-16 17:18:35 +00:00
|
|
|
ring = "0.16"
|
|
|
|
base64 = "0.13.0"
|
2020-10-26 11:10:00 +00:00
|
|
|
|
2020-08-06 18:18:30 +00:00
|
|
|
[dependencies.regex_command_attr]
|
2021-03-14 10:27:30 +00:00
|
|
|
path = "./regex_command_attr"
|