sentc-crypto 0.8.0

The main implementation of the sentc sdk.
Documentation
#![no_std]
#![allow(
	clippy::module_inception,
	clippy::infallible_destructuring_match,
	clippy::tabs_in_doc_comments,
	clippy::manual_map,
	clippy::explicit_counter_loop,
	clippy::manual_range_contains
)]

extern crate alloc;

pub mod crypto;
pub mod crypto_searchable;
pub mod entities;
mod error;
pub mod file;
pub mod group;
pub mod user;
pub mod util;

/**

For server testing export every common
because using common from path via submodule resolve in version conflicts when using it in tests
 */
#[cfg(feature = "server_test")]
pub use sentc_crypto_common as sdk_common;
/**

Reexport of the crypto core crate to access the raw types
*/
pub use sentc_crypto_core as sdk_core;

pub use self::error::{err_to_msg, SdkError};