diff options
| author | Jokler <jokler.contact@gmail.com> | 2017-11-04 22:46:39 +0100 |
|---|---|---|
| committer | Jokler <jokler.contact@gmail.com> | 2017-12-24 00:40:06 +0100 |
| commit | 5928afc3bf83661cd3b11130a31a2d97ef135a9e (patch) | |
| tree | 4d1ad028c3a7130eb98c18ef5b97bea9f52f2e2f /src/lib.rs | |
| parent | f3d679da59a64711ef96042668b26dffd1e662d5 (diff) | |
| download | frippy-5928afc3bf83661cd3b11130a31a2d97ef135a9e.tar.gz frippy-5928afc3bf83661cd3b11130a31a2d97ef135a9e.zip | |
Add MySql as a possible database for the Factoids plugin
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -31,6 +31,13 @@ //! Frippy uses the [log](https://docs.rs/log) crate so you can log events //! which might be of interest. +#[cfg(feature = "mysql")] +#[macro_use] +extern crate diesel; +#[cfg(feature = "mysql")] +#[macro_use] +extern crate diesel_codegen; + #[macro_use] extern crate log; #[macro_use] |
