Expand description
nestrs — umbrella crate that re-exports the framework’s surface so an
application can write a single use nest_rs::prelude::*; instead of a
handful of per-crate imports.
The per-crate split (nest-rs-core, nest-rs-http, …) stays the public,
versioned source of truth. This crate adds no API of its own — it only
collects what already exists behind Cargo features, with one feature per
surface so an app pays only for what it uses.
Re-exports§
pub use nest_rs_core as core;pub use nest_rs_http as http;pub use nest_rs_config as config;
Modules§
- prelude
- The everyday import — covers the decorators and types an app reaches for on every controller, service, and module.