From b6425d6b0e2d52075d50907d2519f18e5530945d Mon Sep 17 00:00:00 2001 From: smalis-msft <137308034+smalis-msft@users.noreply.github.com> Date: Tue, 8 Aug 2023 18:48:43 -0400 Subject: [PATCH] Do not enable any features by default --- Cargo.toml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c788b5eb0d..8cfd38fbc3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -34,13 +34,7 @@ pin-utils = { version = "0.1.0", optional = true } memoffset = { version = "0.9", optional = true } [features] -default = [ - "acct", "aio", "dir", "env", "event", "feature", "fs", - "hostname", "inotify", "ioctl", "kmod", "mman", "mount", "mqueue", - "net", "personality", "poll", "process", "pthread", "ptrace", "quota", - "reboot", "resource", "sched", "signal", "socket", "term", "time", - "ucontext", "uio", "user", "zerocopy", -] +default = [] acct = [] aio = ["pin-utils"]