vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit c11f47903aacf173eac4d0399e801c17468fddb3
parent 6a5f1613e75e58adc1c11490f771a6501c811475
Author: Nils Domrose <nils.domrose@inovex.de>
Date:   Mon, 27 May 2019 23:18:45 +0200

revert include libsqlite3-sys optionally

Diffstat:
MCargo.toml | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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", "libsqlite3-sys"] +sqlite = ["diesel/sqlite", "diesel_migrations/sqlite"] [target."cfg(not(windows))".dependencies] syslog = "4.0.1" @@ -53,7 +53,7 @@ diesel = { version = "1.4.2", features = ["mysql", "sqlite", "chrono", "r2d2"] } diesel_migrations = { version = "1.4.0", features = ["mysql", "sqlite"] } # Bundled SQLite -libsqlite3-sys = { version = "0.12.0", features = ["bundled"], optional = true } +libsqlite3-sys = { version = "0.12.0", features = ["bundled"] } # Crypto library ring = "0.14.6"