s2-lite 0.31.0

Lightweight server implementation of S2, the durable streams API, backed by object storage
Documentation
#[global_allocator]
static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;

use clap::Parser;
use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};

fn install_rustls_crypto_provider() {
    rustls::crypto::aws_lc_rs::default_provider()
        .install_default()
        .expect("failed to install aws-lc-rs as default rustls crypto provider");
}

#[derive(Parser, Debug)]
#[command(author, version, about = "S2 Lite")]
struct Args {
    #[command(flatten)]
    lite: s2_lite::server::LiteArgs,
}

#[tokio::main]
async fn main() -> eyre::Result<()> {
    install_rustls_crypto_provider();
    tracing_subscriber::registry()
        .with(
            tracing_subscriber::EnvFilter::try_from_default_env().unwrap_or_else(|_| "info".into()),
        )
        .with(tracing_subscriber::fmt::layer())
        .init();

    let args = Args::parse();
    s2_lite::server::run(args.lite).await
}