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
66
67
68
69
70
71
72
73
74
75
76
77
#![doc = include_str!("../crate-docs.md")]
#![forbid(unsafe_code)]
#![warn(
    clippy::cargo,
    missing_docs,
    // clippy::missing_docs_in_private_items,
    clippy::pedantic,
    future_incompatible,
    rust_2018_idioms,
)]
#![allow(
    clippy::missing_errors_doc, // TODO clippy::missing_errors_doc
    clippy::option_if_let_else,
    clippy::multiple_crate_versions, // TODO custodian-password deps + x25119 deps
)]

#[cfg(feature = "client")]
#[doc(inline)]
pub use bonsaidb_client as client;
#[doc(inline)]
pub use bonsaidb_core as core;
#[cfg(feature = "files")]
#[doc(inline)]
pub use bonsaidb_files as files;
#[cfg(feature = "local")]
#[doc(inline)]
pub use bonsaidb_local as local;
#[cfg(feature = "server")]
#[doc(inline)]
pub use bonsaidb_server as server;
#[cfg(all(feature = "client", feature = "server"))]
mod any_connection;
#[cfg(all(feature = "cli", feature = "client", feature = "server"))]
pub mod cli;

/// `VaultKeyStorage` implementors.
#[cfg(feature = "keystorage-s3")]
pub mod keystorage {
    #[cfg(feature = "keystorage-s3")]
    #[doc(inline)]
    pub use bonsaidb_keystorage_s3 as s3;
}
#[cfg(all(feature = "client", feature = "server"))]
pub use any_connection::*;

#[test]
fn struct_sizes() {
    fn print_size<T: Sized>() {
        println!(
            "{}: {} bytes",
            std::any::type_name::<T>(),
            std::mem::size_of::<T>()
        );
    }
    #[cfg(feature = "client")]
    {
        print_size::<client::AsyncClient>();
        print_size::<client::AsyncRemoteDatabase>();
        print_size::<client::AsyncRemoteSubscriber>();
    }
    #[cfg(feature = "local")]
    {
        print_size::<local::Storage>();
        print_size::<local::Database>();
        print_size::<local::Subscriber>();
        #[cfg(feature = "local-async")]
        {
            print_size::<local::AsyncStorage>();
            print_size::<local::AsyncDatabase>();
        }
    }
    #[cfg(feature = "server")]
    {
        print_size::<server::Server>();
        print_size::<server::ServerDatabase<server::NoBackend>>();
    }
}