manta_server/lib.rs
1//! Library root for the `manta-server` crate.
2//!
3//! All modules live here. The `main.rs` binary is a thin bootstrap
4//! shim; integration tests in `crates/manta-server/tests/` import the
5//! library directly via `use manta_server::...`.
6
7// Warn (not deny) on undocumented pub items. The server isn't
8// docs.rs-bound (publish = false), so the goal here is contributor
9// onboarding rather than a public API contract. CI still surfaces
10// these warnings via the rustdoc build step.
11#![warn(missing_docs)]
12
13pub mod backend_dispatcher;
14pub mod manta_backend_dispatcher;
15pub mod server;
16pub mod service;
17pub mod wire_conv;