mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2025-08-03 01:06:44 +00:00
Move backend checks to build.rs to fail fast, and updated dependencies
This commit is contained in:
6
build.rs
6
build.rs
@@ -1,6 +1,12 @@
|
||||
use std::process::Command;
|
||||
|
||||
fn main() {
|
||||
#[cfg(all(feature = "sqlite", feature = "mysql"))]
|
||||
compile_error!("Can't enable both backends");
|
||||
|
||||
#[cfg(not(any(feature = "sqlite", feature = "mysql")))]
|
||||
compile_error!("You need to enable one DB backend. To build with previous defaults do: cargo build --features sqlite");
|
||||
|
||||
read_git_info().ok();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user