10 releases

0.3.3 Jan 2, 2024
0.3.2 Jan 2, 2024
0.3.1 Sep 13, 2023
0.3.0 Apr 21, 2023
0.1.2 Jun 21, 2021

#15 in #trillium

Download history 11/week @ 2023-12-24 20/week @ 2023-12-31 43/week @ 2024-02-25 32/week @ 2024-03-03 9/week @ 2024-03-10 15/week @ 2024-03-17

99 downloads per month
Used in trillium-testing

MIT/Apache

380KB
7.5K SLoC

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:

Trillium server adapter for async-std

fn main() {
trillium_async_std::run(|conn: trillium::Conn| async move {
conn.ok("hello async-std")
});
}
#[async_std::main]
async fn main() {
trillium_async_std::run_async(|conn: trillium::Conn| async move {
conn.ok("hello async-std")
}).await;
}

Dependencies

~11–24MB
~419K SLoC