fix authenticator

pull/378/head
Lucas Nogueira 2 years ago
parent 6c7c37e9e6
commit bf5920caa7
No known key found for this signature in database
GPG Key ID: 7C32FCA95C8C95D7

@ -15,6 +15,8 @@ serde_json = { workspace = true }
tauri = { workspace = true } tauri = { workspace = true }
log = { workspace = true } log = { workspace = true }
thiserror = { workspace = true } thiserror = { workspace = true }
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
authenticator = "0.3.1" authenticator = "0.3.1"
once_cell = "1" once_cell = "1"
sha2 = "0.10" sha2 = "0.10"

@ -2,6 +2,8 @@
// SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT // SPDX-License-Identifier: MIT
#![cfg(not(any(target_os = "android", target_os = "ios")))]
mod auth; mod auth;
mod error; mod error;
mod u2f; mod u2f;

Loading…
Cancel
Save