orengine 0.6.0

Optimized ring engine for Rust. It is a lighter and faster asynchronous library than tokio-rs, async-std, may, and even smol.
Documentation
1
2
3
4
5
6
7
8
9
ARG RUST_VERSION=1.81.0

FROM rust:${RUST_VERSION}-alpine AS build

RUN apk add --no-cache clang lld musl-dev git

COPY . .

CMD ["cargo",  "test", "--", "--nocapture"]