dittolive-ditto 5.2.0-preview.1

Ditto is a peer to peer cross-platform database that allows mobile, web, IoT and server apps to sync with or without an internet connection.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Deprecated: use the [`crate::auth`] module instead.
//!
//! This module is retained for backward compatibility and re-exports the
//! authentication types and functions from [`crate::auth`].

#[allow(deprecated)]
#[deprecated(since = "5.1.0", note = "Use the `auth` module instead")]
pub use crate::auth::get_development_provider;
#[allow(deprecated)]
#[deprecated(since = "5.1.0", note = "Use the `auth` module instead")]
pub use crate::auth::AuthenticationClientFeedback;
#[allow(deprecated)]
#[deprecated(since = "5.1.0", note = "Use the `auth` module instead")]
pub use crate::auth::DittoAuthenticationEventHandler;
#[allow(deprecated)]
#[deprecated(since = "5.1.0", note = "Use the `auth` module instead")]
pub use crate::auth::DittoAuthenticator;