openapp-sdk 0.1.52

Rust-first OpenApp SDK: thin facade over openapp-sdk-core for direct Cargo integration.
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>();
    }
}