reminder-bot/Cargo.toml

50 lines
1018 B
TOML
Raw Normal View History

2020-08-06 14:22:13 +00:00
[package]
name = "reminder_rs"
2021-12-20 13:48:18 +00:00
version = "1.6.0-beta3"
authors = ["jellywx <judesouthworth@pm.me>"]
2020-08-06 14:22:13 +00:00
edition = "2018"
[dependencies]
dotenv = "0.15"
humantime = "2.1"
tokio = { version = "1", features = ["process", "full"] }
2021-02-11 23:30:44 +00:00
reqwest = "0.11"
regex = "1.4"
log = "0.4"
env_logger = "0.8"
2020-08-18 19:09:21 +00:00
chrono = "0.4"
2021-09-16 13:48:29 +00:00
chrono-tz = { version = "0.5", features = ["serde"] }
lazy_static = "1.4"
num-integer = "0.1"
serde = "1.0"
serde_json = "1.0"
serde_repr = "0.1"
2021-09-11 19:40:58 +00:00
rmp-serde = "0.15"
rand = "0.7"
levenshtein = "1.0"
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
base64 = "0.13.0"
2020-10-26 11:10:00 +00:00
[dependencies.regex_command_attr]
2021-09-12 15:59:19 +00:00
path = "command_attributes"
2021-11-02 20:19:29 +00:00
2022-02-06 15:47:59 +00:00
[dependencies.postman]
path = "postman"
2021-11-02 20:19:29 +00:00
[dependencies.serenity]
git = "https://github.com/serenity-rs/serenity"
branch = "next"
default-features = false
features = [
"builder",
"client",
"cache",
"gateway",
"http",
"model",
"utils",
"rustls_backend",
"collector",
"unstable_discord_api"
]