mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-05-05 12:14:23 +02:00
9 lines
442 B
Diff
9 lines
442 B
Diff
Disable "systemd" feature and also "v1" feature (legacy version of cgroups).
|
|
|
|
--- a/Cargo.toml
|
|
+++ b/Cargo.toml
|
|
@@ -93,2 +93,2 @@
|
|
-libcgroups = { version = "0.3", optional = true }
|
|
-libcontainer = { version = "0.3", optional = true }
|
|
+libcgroups = { version = "0.3", optional = true, default-features = false, features = ["v2"] }
|
|
+libcontainer = { version = "0.3", optional = true, default-features = false, features = ["v2", "libseccomp"] }
|