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

#23 in #trillium

Download history 123/week @ 2024-07-24 96/week @ 2024-07-31 118/week @ 2024-08-07 95/week @ 2024-08-14 50/week @ 2024-08-21 97/week @ 2024-08-28 127/week @ 2024-09-04 109/week @ 2024-09-11 73/week @ 2024-09-18 72/week @ 2024-09-25 95/week @ 2024-10-02 38/week @ 2024-10-09 75/week @ 2024-10-16 147/week @ 2024-10-23 117/week @ 2024-10-30 68/week @ 2024-11-06

408 downloads per month
Used in trillium-sessions

MIT/Apache

67KB
939 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

~8.5MB
~204K SLoC