loona 0.3.4

HTTP 1 and 2 on top of io_uring
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::future::Future;

use b_x::BX;

pub(crate) mod tracing_common;

pub(crate) fn run(test: impl Future<Output = Result<(), BX>>) {
    loona::buffet::start(async {
        tracing_common::setup_tracing();

        if let Err(e) = test.await {
            panic!("Error: {e}");
        }
    });
}