tauri-plugin-secure-storage 1.1.0

Tauri plugin for secure storage using the system's keyring.
Documentation
1
2
3
4
5
6
7
8
const COMMANDS: &[&str] = &["ping", "set_synchronize_keychain", "get_item", "set_item"];

fn main() {
  tauri_plugin::Builder::new(COMMANDS)
    .android_path("android")
    .ios_path("ios")
    .build();
}