basic_allocator 0.1.4

A very simple global allocator written in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM rustlang/rust:nightly

# This mostly just works without the Dockerfile:
# docker  run  -v `pwd`:/$(basename $PWD) -w /$(basename $PWD) -it  rustlang/rust:nightly
#
# Alternatively, you can use this Dockerfile:
# docker build -t basicalloc . && docker run --rm -it basicalloc

WORKDIR /usr/src/basicalloc
COPY . .

# We don't really need strace, but it is useful for this
RUN apt-get update -y
RUN apt-get install -y strace

RUN cargo build