10 releases

0.4.1 Sep 4, 2024
0.3.3 May 21, 2024
0.3.2 Jan 31, 2024
0.3.1 Dec 19, 2023
0.0.4 Dec 13, 2022

#205 in Unix APIs

Download history 360/week @ 2024-07-18 198/week @ 2024-07-25 162/week @ 2024-08-01 309/week @ 2024-08-08 201/week @ 2024-08-15 327/week @ 2024-08-22 246/week @ 2024-08-29 422/week @ 2024-09-05 545/week @ 2024-09-12 185/week @ 2024-09-19 221/week @ 2024-09-26 286/week @ 2024-10-03 318/week @ 2024-10-10 193/week @ 2024-10-17 170/week @ 2024-10-24 431/week @ 2024-10-31

1,138 downloads per month
Used in 3 crates

Custom license

1MB
21K SLoC

libcontainer

Building with musl

In order to build with musl you must first remove the libseccomp dependency as it will reference shared libraries (libseccomp) which cannot be built with musl.

Do this by using adding flags to Cargo. Use the --no-default-features flag followed by -F and whatever features you intend to build with such as v2 as defined in Cargo.toml under features section.

Next you will also need the +nightly flags when building with rustup and cargo.

# Add rustup +nightly musl to toolchain
rustup +nightly target add $(uname -m)-unknown-linux-musl

# Build rustup +nightly stdlib with musl
rustup +nightly toolchain install nightly-$(uname -m)-unknown-linux-musl

# Build musl standard library
cargo +nightly build -Zbuild-std --target $(uname -m)-unknown-linux-musl --no-default-features -F v2

cargo +nightly build --target $(uname -m)-unknown-linux-musl --no-default-features -F v2

Dependencies

~18–31MB
~485K SLoC