corteq-onepassword 0.1.5

Secure 1Password SDK wrapper with FFI bindings for Rust applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! FFI bindings for the 1Password SDK.
//!
//! This module provides the low-level integration with the native
//! `libop_uniffi_core` library via FFI.

pub(crate) mod bindings;
pub(crate) mod loader;
pub(crate) mod protocol;
pub(crate) mod uniffi_types;

// Re-export commonly used items
pub(crate) use bindings::SdkClient;
pub(crate) use loader::load_library;