credence_lib/
lib.rs

1// https://stackoverflow.com/a/61417700
2#![cfg_attr(docsrs, feature(doc_auto_cfg))]
3#![warn(missing_docs)]
4
5/*!
6An unfussy web server designed for straightforward authoring and scalable performance.
7
8For more information and usage examples see the
9[home page](https://github.com/tliron/rust-credence).
10*/
11
12/// Configuration.
13pub mod configuration;
14
15/// File modification coordinator.
16pub mod coordinator;
17
18/// Axum middleware.
19pub mod middleware;
20
21/// Compris resolvers.
22pub mod resolve;
23
24/// Render.
25pub mod render;
26
27/// Server.
28pub mod server;
29
30/// Utilities.
31pub mod util;