alac-encoder 0.2.0

Rust port of Apple's open source ALAC library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM rust:1.34

WORKDIR /usr/src

# Host dependencies
RUN apt-get update && apt-get install -y libclang-4.0-dev && apt-get clean

# Build dependencies
COPY Cargo.toml ./
RUN mkdir src && touch src/lib.rs && cargo build

# Run tests
COPY . .
RUN cargo test -- --nocapture --test-threads=1