aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorJokler <jokler.contact@gmail.com>2018-05-14 20:46:59 +0200
committerJokler <jokler.contact@gmail.com>2018-05-14 20:46:59 +0200
commite9799560e033c3de59a99946ad3811dff47c8819 (patch)
treef2584dd5ef943a6d996007d4f56fae59dbf02594 /Cargo.toml
parentbef668bce8dc1022e7dde7b0da65fa64bb472cf4 (diff)
downloadfrippy-e9799560e033c3de59a99946ad3811dff47c8819.tar.gz
frippy-e9799560e033c3de59a99946ad3811dff47c8819.zip
Remind: Add Mysql as a possible database
The bot also responds with the id and time of a reminder after creation to allow the creator to delete them. Furthermore the InvalidCommand message was fixed and the unnecessary dotenv dependency was removed.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml29
1 files changed, 12 insertions, 17 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 75c9abe..feab256 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -18,23 +18,22 @@ mysql = [
"diesel",
"diesel_infer_schema",
"diesel_migrations",
- "dotenv",
"r2d2",
"r2d2-diesel"
]
[dependencies]
-irc = "0.13"
+irc = "0.13.5"
log = "0.4.1"
-time = "0.1.39"
-humantime = "1.1.0"
-rlua = "0.12.2"
+time = "0.1.40"
+humantime = "1.1.1"
+rlua = "0.13.0"
reqwest = "0.8.5"
-regex = "0.2.6"
+regex = "1.0.0"
lazy_static = "1.0.0"
-serde = "1.0.27"
-serde_json = "1.0.9"
-chrono = "0.4.0"
+serde = "1.0.55"
+serde_json = "1.0.17"
+chrono = "0.4.2"
glob = "0.2.11"
circular-queue = "0.2.0"
failure = "0.1.1"
@@ -50,17 +49,17 @@ branch = 'update-to-latest-unicode'
[dependencies.diesel]
-version = "1.1.1"
+version = "1.2.2"
optional = true
features = ["mysql", "chrono"]
[dependencies.diesel_infer_schema]
-version = "1.1.0"
+version = "1.2.0"
optional = true
features = ["mysql"]
[dependencies.diesel_migrations]
-version = "1.1.0"
+version = "1.2.0"
optional = true
features = ["mysql"]
@@ -72,10 +71,6 @@ optional = true
version = "1.0.0"
optional = true
-[dependencies.dotenv]
-version = "0.11.0"
-optional = true
-
[dependencies.clippy]
-version = "*"
+version = "0.0.200"
optional = true