tauri-plugin-secure-element 0.1.0-beta.4

Tauri plugin for secure element use on iOS (Secure Enclave) and Android (Strongbox and TEE).
[package]
name = "tauri-plugin-secure-element"
version = "0.1.0-beta.4"
authors = [ "Don Kackman<dkackman@gmail.com>" ]
description = "Tauri plugin for secure element use on iOS (Secure Enclave) and Android (Strongbox and TEE)."
edition = "2021"
rust-version = "1.77.2"
links = "tauri-plugin-secure-element"
license = "Apache-2.0"
repository = "https://github.com/dkackman/tauri-plugin-secure-element"
homepage = "https://github.com/dkackman/tauri-plugin-secure-element"
documentation = "https://github.com/dkackman/tauri-plugin-secure-element#readme"
readme = "README.md"
categories = ["api-bindings", "cryptography", "authentication"]
keywords = ["tauri", "plugin", "secure-element", "secure-enclave", "strongbox"]
exclude = [
    "**/.tauri",
    "**/target",
    "**/node_modules",
    "**/build",
    "**/.gradle",
    "**/.build",
    "**/.swiftpm",
    "**/Package.resolved",
    "**/.git",
    "**/.gitignore",
    "**/.DS_Store",
    "**/dist",
    "**/dist-js",
    "**/Cargo.lock",
    "**/.vs",
    "**/.idea",
    "**/*.sublime*",
    "**/debug.log",
    "**/package-lock.json",
    "**/yarn.lock",
    "**/pnpm-lock.yaml",
    "**/pnpm-workspace.yaml",
    "**/.npmrc",
    "**/.prettierignore",
    "**/.prettierrc.json",
    "**/.swiftlint.yml",
    "**/rollup.config.js",
    "**/tsconfig.json",
    "**/package.json",
    "**/guest-js",
    "**/ios/Tests",
    "**/ios/.gitignore",
    "**/android/local.properties",
]

[dependencies]
tauri = { version = "2.10.1" }
serde = "1.0"
serde_json = "1.0"
thiserror = "2"
base64 = "0.22"
sha2 = "0.10"

[target.'cfg(target_os = "macos")'.dependencies]
libc = "0.2"

[target.'cfg(target_os = "windows")'.dependencies]
windows = { version = "0.62.2", features = [
    "Win32_Foundation",
    "Win32_Security",
    "Win32_Security_Authorization",
    "Win32_Security_Cryptography",
    "Win32_System_Threading",
    "Win32_System_TpmBaseServices",
    "Security_Credentials_UI",
] }
winver = "1"
raw-window-handle = "0.6"

[build-dependencies]
tauri-plugin = { version = "2.5.3", features = ["build"] }