From 35d51ab0140ab1c55375fed969acf95c1321888a Mon Sep 17 00:00:00 2001 From: Ibuki Omatsu Date: Sat, 28 Feb 2026 14:10:05 +0000 Subject: [PATCH] fix: Fix feature dependencies --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c5bd4f3429..4e7020b889 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "libredox" authors = ["4lDO2 <4lDO2@protonmail.com>"] -version = "0.1.13" +version = "0.1.14" edition = "2021" license = "MIT" description = "Redox stable ABI" @@ -12,9 +12,9 @@ exclude = ["target"] [features] default = ["base", "call", "std", "redox_syscall", "protocol"] -base = [] -call = ["base", "libc"] -std = ["base", "libc"] +base = ["libc"] +call = ["base"] +std = ["base"] protocol = ["plain", "bitflags", "redox_syscall"] mkns = ["ioslice"]