11 releases

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

#34 in #trillium

Download history 131/week @ 2024-12-15 1/week @ 2025-01-05 2/week @ 2025-01-26 196/week @ 2025-02-02 66/week @ 2025-02-09 136/week @ 2025-02-16 3/week @ 2025-02-23 41/week @ 2025-03-02 190/week @ 2025-03-09 135/week @ 2025-03-16 98/week @ 2025-03-23

423 downloads per month
Used in 6 crates (3 directly)

MIT/Apache

385KB
7.5K SLoC

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;
}

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

~13–23MB
~407K SLoC