dittolive_ditto/identity/
mod.rs

1//! Deprecated: use the [`crate::auth`] module instead.
2//!
3//! This module is retained for backward compatibility and re-exports the
4//! authentication types and functions from [`crate::auth`].
5
6#[allow(deprecated)]
7#[deprecated(since = "5.1.0", note = "Use the `auth` module instead")]
8pub use crate::auth::get_development_provider;
9#[allow(deprecated)]
10#[deprecated(since = "5.1.0", note = "Use the `auth` module instead")]
11pub use crate::auth::AuthenticationClientFeedback;
12#[allow(deprecated)]
13#[deprecated(since = "5.1.0", note = "Use the `auth` module instead")]
14pub use crate::auth::DittoAuthenticationEventHandler;
15#[allow(deprecated)]
16#[deprecated(since = "5.1.0", note = "Use the `auth` module instead")]
17pub use crate::auth::DittoAuthenticator;