bitbottle 0.10.0

a modern archive file format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM rust:1.56-bullseye
WORKDIR /app

# install liblzma, and libclang for argonautica (sigh)
RUN apt-get update
RUN apt-get install -y build-essential liblzma-dev libclang-dev
RUN rustup component add clippy

COPY Cargo.* Makefile ./
COPY src ./src
COPY tests ./tests

RUN make test