opup 0.1.0

Spin up a composable OP Stack, programmatically.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// We use jemalloc for performance reasons
#[cfg(all(feature = "jemalloc", unix))]
#[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;

fn main() {
    if let Err(err) = opup::cli::run() {
        eprintln!("Error: {err:?}");
        std::process::exit(1);
    }
}