feat(ci): test mobile targets (#378)

This commit is contained in:
Lucas Fernandes Nogueira
2023-05-19 09:46:06 -07:00
committed by GitHub
parent 8bd80eb651
commit d677f73495
13 changed files with 84 additions and 16 deletions
+2
View File
@@ -15,6 +15,8 @@ serde_json = { workspace = true }
tauri = { workspace = true }
log = { workspace = true }
thiserror = { workspace = true }
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
authenticator = "0.3.1"
once_cell = "1"
sha2 = "0.10"
+2
View File
@@ -2,6 +2,8 @@
// SPDX-License-Identifier: Apache-2.0
// SPDX-License-Identifier: MIT
#![cfg(not(any(target_os = "android", target_os = "ios")))]
mod auth;
mod error;
mod u2f;