1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//! Add `use dittolive_ditto::prelude::*;` to import frequently-used Ditto functionality.
//!
//! The prelude contains all common imports when using this crate.

pub use serde_cbor::Value as CborValue;

// NOTE(nimo): Doctest to ensure this is hidden/deprecated but available
/// ```rust,no_run
/// use dittolive_ditto::prelude::SiteId;
/// ```
#[doc(hidden)]
#[allow(deprecated)]
pub use crate::ditto::SiteId;
// NOTE(nimo): Doctest to ensure this is hidden/deprecated but available
/// ```rust,no_run
/// use dittolive_ditto::prelude::Observer;
/// ```
#[doc(hidden)]
#[allow(deprecated)]
pub use crate::observer::Observer;
// NOTE(nimo): Doctest to ensure this is hidden/deprecated but available
/// ```rust,no_run
/// use dittolive_ditto::prelude::PeersObserver;
/// ```
#[doc(hidden)]
#[allow(deprecated)]
pub use crate::presence::observer::PeersObserver;
#[doc(hidden)]
#[allow(deprecated)]
#[cfg(feature = "timeseries")]
pub use crate::store::timeseries::TimeSeries;
pub use crate::{
    disk_usage::DiskUsage,
    error::DittoError,
    ffi_sdk::{BoxedDitto, BoxedDocument, CLogLevel, StringPrimitiveFormat},
    fs::{DittoRoot, PersistentRoot, TempRoot},
    identity::{
        self, DittoAuthenticationEventHandler, DittoAuthenticator, Identity, Manual,
        OfflinePlayground, OnlinePlayground, OnlineWithAuthentication, SharedKey,
    },
    logger::DittoLogger,
    presence::{
        ConnectionRequest, ConnectionRequestAuthorization, Presence, PresenceGraph,
        PresenceObserver,
    },
    small_peer_info::DittoSmallPeerInfoSyncScope,
    store::{
        attachment::{
            DittoAttachment, DittoAttachmentFetchEvent, DittoAttachmentFetcher,
            DittoAttachmentToken,
        },
        query_builder::{
            COrderByParam, Collection, CollectionsEvent, CollectionsEventHandler, DittoCounter,
            DittoDocument, DittoMutDocument, DittoMutableCounter, DittoMutableRegister,
            DittoRegister, DocumentId, EventHandler, LiveQuery, LiveQueryEvent, LiveQueryMove,
            PendingCollectionsOperation, PendingCursorOperation, PendingIdSpecificOperation,
            QuerySortDirection, SingleDocumentEventHandler, SingleDocumentLiveQueryEvent,
            Subscription,
        },
        Store, WriteStrategy,
    },
    transport::{HttpListenConfig, TcpListenConfig, TransportConfig},
    utils::extension_traits::CborValueGetters,
    AppId, Ditto, DittoBuilder, LogLevel,
};