openapp-sdk 0.1.61

Official Rust SDK for OpenApp — Physical Security as a Service (PSaaS): API-first access control for doors, gates, intercom, invitations, and audit.
Documentation
//! Rust-first `OpenApp` SDK — thin re-export of [`openapp_sdk_core`].
//!
//! Prefer this crate for Rust applications so version lines stay independent of
//! the internal `openapp-sdk-core` crate while tracking the same wire behavior.

#![deny(rust_2018_idioms, missing_debug_implementations)]
#![warn(clippy::pedantic)]
#![allow(clippy::module_name_repetitions, clippy::missing_errors_doc)]

pub use openapp_sdk_core::*;

#[cfg(test)]
mod tests {
    use crate::ClientBuilder;

    #[test]
    fn reexports_client_builder() {
        let _ = std::any::type_name::<ClientBuilder>();
    }
}