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

#29 in #trillium

Download history 1/week @ 2023-12-22 58/week @ 2023-12-29 29/week @ 2024-01-05 8/week @ 2024-01-12 63/week @ 2024-01-19 31/week @ 2024-01-26 6/week @ 2024-02-02 90/week @ 2024-02-09 31/week @ 2024-02-16 100/week @ 2024-02-23 31/week @ 2024-03-01 55/week @ 2024-03-08 43/week @ 2024-03-15 75/week @ 2024-03-22 94/week @ 2024-03-29 379/week @ 2024-04-05

592 downloads per month
Used in trillium-sessions

MIT/Apache

67KB
936 lines

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.


lib.rs:

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"
);

Dependencies

~8MB
~203K SLoC