7 unstable releases (3 breaking)

0.3.2 Jan 31, 2024
0.3.1 Dec 19, 2023
0.3.0 Oct 15, 2023
0.2.0 Sep 1, 2023
0.0.4 Dec 13, 2022

#109 in Operating systems

Download history 339/week @ 2023-12-31 234/week @ 2024-01-07 395/week @ 2024-01-14 244/week @ 2024-01-21 223/week @ 2024-01-28 83/week @ 2024-02-04 214/week @ 2024-02-11 213/week @ 2024-02-18 267/week @ 2024-02-25 275/week @ 2024-03-03 275/week @ 2024-03-10 485/week @ 2024-03-17 294/week @ 2024-03-24 402/week @ 2024-03-31 234/week @ 2024-04-07 480/week @ 2024-04-14

1,476 downloads per month
Used in 2 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

~16–31MB
~460K SLoC