1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-07-27 22:29:10 +00:00

Fix AArch64 build by disabling yubico

This commit is contained in:
Daniel García 2019-01-10 23:54:01 +01:00
commit 1d034749f7
No known key found for this signature in database
GPG key ID: FC8A7D14C3CD543A
4 changed files with 75 additions and 50 deletions

View file

@ -11,7 +11,9 @@ publish = false
build = "build.rs"
[features]
default = ["enable_yubikey"]
enable_syslog = ["syslog", "fern/syslog-4"]
enable_yubikey = ["yubico"]
[dependencies]
# Web framework for nightly with a focus on ease-of-use, expressibility, and speed.
@ -72,7 +74,7 @@ jsonwebtoken = "5.0.1"
u2f = "0.1.4"
# Yubico Library
yubico = { version = "=0.4.0", features = ["online"], default-features = false }
yubico = { version = "=0.4.0", features = ["online"], default-features = false, optional = true }
# A `dotenv` implementation for Rust
dotenv = { version = "0.13.0", default-features = false }