mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-14 08:52:56 +00:00
Avoids compiling the crate and its dependencies into binaries that don't need them. Shrinks the compute_ctl binary from about 31MB to 28MB in the release-line-debug-size-lto profile.
13 lines
387 B
Rust
13 lines
387 B
Rust
pub mod endpoint;
|
|
pub mod error;
|
|
pub mod failpoints;
|
|
pub mod json;
|
|
pub mod pprof;
|
|
pub mod request;
|
|
|
|
extern crate hyper0 as hyper;
|
|
|
|
/// Current fast way to apply simple http routing in various Neon binaries.
|
|
/// Re-exported for sake of uniform approach, that could be later replaced with better alternatives, if needed.
|
|
pub use routerify::{ext::RequestExt, RouterBuilder, RouterService};
|