6 releases (3 breaking)

0.4.2 Apr 7, 2024
0.4.1 Jan 2, 2024
0.4.0 Mar 30, 2023
0.3.0 Jan 3, 2022
0.1.0 Jun 7, 2021

#24 in #trillium

Download history 49/week @ 2024-12-21 19/week @ 2024-12-28 7/week @ 2025-01-04 35/week @ 2025-01-11 133/week @ 2025-01-18 222/week @ 2025-01-25 130/week @ 2025-02-01 94/week @ 2025-02-08 78/week @ 2025-02-15 208/week @ 2025-02-22 157/week @ 2025-03-01 126/week @ 2025-03-08 161/week @ 2025-03-15 87/week @ 2025-03-22 94/week @ 2025-03-29 180/week @ 2025-04-05

522 downloads per month
Used in trillium-sessions

MIT/Apache

67KB
939 lines

the trillium cookie handler

example

use trillium::Conn;
use trillium_cookies::{cookie::Cookie, CookiesConnExt, CookiesHandler};
async fn handler_that_uses_cookies(conn: Conn) -> Conn {
let content = if let Some(cookie_value) = conn.cookies().get("some_cookie") {
format!("current cookie value: {}", cookie_value.value())
} else {
String::from("no cookie value set")
};

conn.with_cookie(("some_cookie", "some-cookie-value")).ok(content)
}

let handler = (CookiesHandler::new(), handler_that_uses_cookies);

use trillium_testing::prelude::*;

assert_ok!(
get("/").on(&handler),
"no cookie value set",
"set-cookie" => "some_cookie=some-cookie-value"
);

assert_ok!(
get("/").with_request_header("cookie", "some_cookie=trillium").on(&handler),
"current cookie value: trillium",
"set-cookie" => "some_cookie=some-cookie-value"
);


Welcome to Trillium!

📖 Guide 📖

The guide provides an architectural overview and lay of the land connecting the trillium crates.

📑 Rustdocs 📑

The rustdocs represent the best way to learn about any of trillium's individual crates and the specific interfaces.




Legal:

Licensed under either of

at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~8.5MB
~206K SLoC