bitwarden_uniffi/
uniffi_support.rs1use bitwarden_crypto::{SymmetricCryptoKey, safe};
2use uuid::Uuid;
3
4type DateTime = chrono::DateTime<chrono::Utc>;
6uniffi::use_remote_type!(bitwarden_core::DateTime);
7
8type NaiveDate = chrono::NaiveDate;
9uniffi::use_remote_type!(bitwarden_core::NaiveDate);
10
11uniffi::use_remote_type!(bitwarden_core::Uuid);
12
13uniffi::use_remote_type!(bitwarden_crypto::safe::PasswordProtectedKeyEnvelope);
14
15uniffi::use_remote_type!(bitwarden_crypto::SymmetricCryptoKey);