chore(authenticator): Inline u2f crate (#780)

* chore(authenticator): Inline u2f crate

* update chrono

* update rustix

* clippy
This commit is contained in:
Fabian-Lars
2023-11-29 12:56:26 +01:00
committed by GitHub
parent 3f7c4ddc96
commit a67f7cb7c8
15 changed files with 725 additions and 69 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ pub enum Error {
#[error(transparent)]
JSON(#[from] serde_json::Error),
#[error(transparent)]
U2F(#[from] u2f::u2ferror::U2fError),
U2F(#[from] crate::u2f_crate::u2ferror::U2fError),
#[error(transparent)]
Auth(#[from] authenticator::errors::AuthenticatorError),
}