A procedural macro to reduce json response boilerplate on actix projects.
Implementing struct has to be serializable. Example shown in tests and below: ```rust
extern crate actixjsonresponder;
use serde::Serialize; use actix_web::{web, App, HttpServer};
struct HelloStruct { title: String, }
async fn index() -> Result
async fn main() -> std::io::Result<()> { HttpServer::new(|| App::new() .service(web::resource("/index.html").to(index))) .bind("127.0.0.1:8888")? .run() .await } ``` Working example is in example directory.
Distributed under the terms of MIT license and Apache license.