From ee277de707d66b1dbcec6ad5c3b21c9b2745b3d2 Mon Sep 17 00:00:00 2001 From: Nils Domrose Date: Mon, 27 May 2019 23:31:56 +0200 Subject: [PATCH] include libsqlite3-sys optionally, removed non common features --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1260c9c4..a4dca522 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ build = "build.rs" # Empty to keep compatibility, prefer to set USE_SYSLOG=true enable_syslog = [] mysql = ["diesel/mysql", "diesel_migrations/mysql"] -sqlite = ["diesel/sqlite", "diesel_migrations/sqlite"] +sqlite = ["diesel/sqlite", "diesel_migrations/sqlite", "libsqlite3-sys"] [target."cfg(not(windows))".dependencies] syslog = "4.0.1" @@ -49,11 +49,11 @@ log = "0.4.6" fern = { version = "0.5.8", features = ["syslog-4"] } # A safe, extensible ORM and Query builder -diesel = { version = "1.4.2", features = ["mysql", "sqlite", "chrono", "r2d2"] } -diesel_migrations = { version = "1.4.0", features = ["mysql", "sqlite"] } +diesel = { version = "1.4.2", features = [ "chrono", "r2d2"] } +diesel_migrations = { version = "1.4.0" } # Bundled SQLite -libsqlite3-sys = { version = "0.12.0", features = ["bundled"] } +libsqlite3-sys = { version = "0.12.0", features = ["bundled"], optional = true } # Crypto library ring = "0.14.6"