#actix-web #flash #actix

actix-flash

Flash messages for actix-web 2.0

2 unstable releases

0.2.0 Sep 26, 2020
0.1.0 Feb 21, 2020

#1194 in HTTP server

Download history 1/week @ 2023-12-04 14/week @ 2023-12-11 15/week @ 2024-01-08 20/week @ 2024-01-22 14/week @ 2024-01-29 4/week @ 2024-02-05 22/week @ 2024-02-19 16/week @ 2024-02-26 27/week @ 2024-03-04 7/week @ 2024-03-11

72 downloads per month

MIT/Apache

16KB
174 lines

actix-flash

Docs Crates.io

Flash message middleware for actix-web 2.0 or 3.0.

Supports actix-web 3.0 by default. For 2.0, use:

actix-flash = { version = "0.2", features = ["v2"], default-features = false }

For actix-web 1.0 support, check out actix-web-flash.

Usage

use actix_web::{web, App, HttpRequest, HttpResponse, HttpServer, Responder};

async fn show_flash(flash: actix_flash::Message<String>) -> impl Responder {
    flash.into_inner()
}

async fn set_flash(_req: HttpRequest) -> actix_flash::Response<HttpResponse, String> {
    actix_flash::Response::with_redirect("This is the message".to_owned(), "/show_flash")
}

#[actix_rt::main]
async fn main() -> std::io::Result<()> {
    HttpServer::new(move || {
        App::new()
            .wrap(actix_flash::Flash::default())
            .route("/show_flash", web::get().to(show_flash))
            .route("/set_flash", web::get().to(set_flash))
    })
    .bind("127.0.0.1:8080")?
    .run()
    .await
}

Current version: 0.2.0

License: MIT/Apache-2.0

Dependencies

~2.2–7.5MB
~157K SLoC