changed dependencies so that we stay on releases

This commit is contained in:
2021-01-25 20:24:24 +00:00
parent 74874c6e99
commit 355693f366
3 changed files with 308 additions and 172 deletions

View File

@ -1,14 +1,14 @@
[package]
name = "reminder_rs"
version = "1.4.2"
version = "1.4.3"
authors = ["jellywx <judesouthworth@pm.me>"]
edition = "2018"
[dependencies]
dotenv = "0.15"
humantime = "2.1"
tokio = { version = "1.0", features = ["process"] }
reqwest = { version = "0.11", features = ["rustls-tls"] }
tokio = { version = "0.2", features = ["process", "full"] }
reqwest = "0.10"
regex = "1.4"
log = "0.4"
env_logger = "0.8"
@ -22,16 +22,12 @@ serde_json = "1.0"
rand = "0.7"
Inflector = "0.11"
levenshtein = "1.0"
[dependencies.sqlx]
git = "https://github.com/ant32/sqlx"
default-features = false
features = ["runtime-tokio-rustls", "macros", "mysql", "bigdecimal", "chrono"]
sqlx = { version = "0.4.2", features = ["runtime-tokio-rustls", "macros", "mysql", "bigdecimal", "chrono"]}
[dependencies.serenity]
version = "0.10"
default-features = false
features = ["builder", "client", "framework", "cache", "gateway", "http", "model", "utils", "collector", "rustls_backend"]
features = ["builder", "client", "framework", "cache", "gateway", "http", "model", "utils", "collector", "default_tokio_0_2"]
[dependencies.regex_command_attr]
path = "./regex_command_attr"