reminder-bot/Cargo.toml

18 lines
542 B
TOML
Raw Normal View History

2020-08-06 14:22:13 +00:00
[package]
name = "reminder_rs"
2020-08-06 14:22:13 +00:00
version = "0.1.0"
authors = ["jellywx <judesouthworth@pm.me>"]
2020-08-06 14:22:13 +00:00
edition = "2018"
[dependencies]
serenity = {git = "https://github.com/acdenisSK/serenity", branch = "await_next"}
dotenv = "0.15"
tokio = {version = "0.2.19", features = ["fs", "sync", "process", "io-util"]}
reqwest = "0.10.6"
sqlx = {version = "0.3.5", default-features = false, features = ["runtime-tokio", "macros", "mysql", "bigdecimal"]}
regex = "1.3.9"
async-trait = "0.1.36"
[dependencies.regex_command_attr]
path = "./regex_command_attr"