diff options
| author | Jokler <jokler.contact@gmail.com> | 2017-12-16 18:13:02 +0100 |
|---|---|---|
| committer | Jokler <jokler.contact@gmail.com> | 2017-12-24 01:24:58 +0100 |
| commit | 4b5693d3c6781a5ca4ef32f43f3994a65020c933 (patch) | |
| tree | fcea35b595542661d1f6713d860d647832aabd47 /Cargo.toml | |
| parent | 5928afc3bf83661cd3b11130a31a2d97ef135a9e (diff) | |
| download | frippy-4b5693d3c6781a5ca4ef32f43f3994a65020c933.tar.gz frippy-4b5693d3c6781a5ca4ef32f43f3994a65020c933.zip | |
Add more info to factoids and save old versions
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 19 |
1 files changed, 13 insertions, 6 deletions
@@ -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 |
