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
#![doc = include_str!(".crate-docs.md")]
#![cfg_attr(not(feature = "included-from-omnibus"), doc = include_str!("../server-feature-flags.md"))]
#![forbid(unsafe_code)]
#![warn(
clippy::cargo,
missing_docs,
clippy::nursery,
clippy::pedantic,
future_incompatible,
rust_2018_idioms,
)]
#![allow(
clippy::missing_errors_doc,
clippy::missing_panics_doc,
clippy::option_if_let_else,
clippy::module_name_repetitions,
)]
pub mod api;
mod backend;
#[cfg(feature = "cli")]
pub mod cli;
mod config;
mod dispatch;
mod error;
pub(crate) mod hosted;
mod server;
#[cfg(feature = "acme")]
pub use config::{
AcmeConfiguration, LETS_ENCRYPT_PRODUCTION_DIRECTORY, LETS_ENCRYPT_STAGING_DIRECTORY,
};
pub use self::{
backend::{Backend, BackendError, ConnectionHandling, NoBackend},
config::{DefaultPermissions, ServerConfiguration},
error::Error,
server::{
ApplicationProtocols, ConnectedClient, CustomServer, HttpService, LockedClientDataGuard,
Peer, Server, ServerDatabase, StandardTcpProtocols, TcpService, Transport,
},
};
#[cfg(test)]
mod tests;
#[cfg(any(feature = "test-util", test))]
pub mod test_util;
#[cfg(not(feature = "included-from-omnibus"))]
pub use bonsaidb_core as core;
#[cfg(not(feature = "included-from-omnibus"))]
pub use bonsaidb_local as local;
pub use fabruic;