actix_tower 0.1.1

Modern extensions for Actix Web — Tower compatibility, ergonomic extractors, and production-ready middleware.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Declarative macros for reducing boilerplate.

pub mod extract;
pub mod handler;
pub mod route;

// Re-export macros at module level
pub use extract::extract;
pub use handler::handler;
pub use route::route;