struct-audit 0.2.1

Analyze binary memory layouts to detect padding inefficiencies
Documentation
1
2
3
4
5
6
7
8
9
10
FROM rustlang/rust:nightly-slim

RUN apt-get update && apt-get install -y gcc && rm -rf /var/lib/apt/lists/*

WORKDIR /app
COPY . .

RUN mkdir -p tests/fixtures/bin && gcc -g -o tests/fixtures/bin/test_simple tests/fixtures/test_simple.c

CMD ["cargo", "test"]