summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorJokler <jokler.contact@gmail.com>2017-12-16 18:13:02 +0100
committerJokler <jokler.contact@gmail.com>2017-12-24 01:24:58 +0100
commit4b5693d3c6781a5ca4ef32f43f3994a65020c933 (patch)
treefcea35b595542661d1f6713d860d647832aabd47 /Cargo.toml
parent5928afc3bf83661cd3b11130a31a2d97ef135a9e (diff)
downloadfrippy-4b5693d3c6781a5ca4ef32f43f3994a65020c933.tar.gz
frippy-4b5693d3c6781a5ca4ef32f43f3994a65020c933.zip
Add more info to factoids and save old versions
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml19
1 files changed, 13 insertions, 6 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 5ff779f..5f535e4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -19,7 +19,7 @@ path = "bin/main.rs"
doc = false
[features]
-mysql = ["diesel", "diesel_codegen", "dotenv"]
+mysql = ["diesel", "diesel_infer_schema", "diesel_migrations", "dotenv"]
[dependencies]
irc = "0.12.5"
@@ -27,13 +27,14 @@ tokio-core = "0.1.10"
futures = "0.1.16"
log = "0.3.8"
time = "0.1"
-rlua = "0.9.2"
+rlua = "0.9.3"
reqwest = "0.8.0"
select = "0.4.2"
regex = "0.2.2"
lazy_static = "0.2.9"
serde = "1.0.15"
serde_json = "1.0.3"
+chrono = "0.4.0"
glob = "0.2"
frippy_derive = { path = "frippy_derive" }
@@ -42,13 +43,19 @@ frippy_derive = { path = "frippy_derive" }
git = 'https://github.com/Jokler/unicode_names'
branch = 'update-to-latest-unicode'
+
[dependencies.diesel]
-version = "0.16.0"
+version = "1.0.0-beta1"
+optional = true
+features = ["mysql", "chrono"]
+
+[dependencies.diesel_infer_schema]
+version = "1.0.0-beta1"
optional = true
features = ["mysql"]
-[dependencies.diesel_codegen]
-version = "0.16.0"
+[dependencies.diesel_migrations]
+version = "1.0.0-beta1"
optional = true
features = ["mysql"]
@@ -58,4 +65,4 @@ optional = true
[dependencies.clippy]
version = "*"
-optional = true \ No newline at end of file
+optional = true