Merge pull request #226 from igalic/feat/sqlite

Add SQLite as supported database
This commit is contained in:
Baptiste Gelez
2018-10-06 12:15:00 +01:00
committed by GitHub
129 changed files with 598 additions and 265 deletions
+6 -1
View File
@@ -29,7 +29,7 @@ features = ["serde"]
version = "0.4"
[dependencies.diesel]
features = ["postgres", "r2d2", "chrono"]
features = ["postgres", "sqlite", "r2d2", "chrono"]
version = "*"
[dependencies.plume-api]
@@ -62,5 +62,10 @@ rev = "2805ce5dbae4a6441208484426440885a5640a6a"
git = "https://github.com/BaptisteGelez/rocket_i18n"
rev = "75a3bfd7b847324c078a355a7f101f8241a9f59b"
[features]
default = ["postgres"]
postgres = ["plume-models/postgres"]
sqlite = ["plume-models/sqlite"]
[workspace]
members = ["plume-api", "plume-models", "plume-common"]