local_async_utils 0.2.13

Utilities for single-threaded async programming
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
FROM rust:bookworm

RUN rustup component add clippy rustfmt

# install nextest
RUN curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin

# create non-root user for vscode
RUN groupadd --gid 1000 builder && \
    useradd --uid 1000 --gid 1000 -m builder

ENTRYPOINT ["cargo"]