From 5c362adcff3c8aa5969c6d159016ee9d1e719e45 Mon Sep 17 00:00:00 2001 From: Markus Rudy Date: Tue, 14 Apr 2026 16:51:15 +0200 Subject: [PATCH] agent: add required features for standalone build Building the kata-agent-policy crate only succeeded when its parents (agent and genpolicy) pulled in the required features. This commit adds the required features to the crate itself, such that it can be built standalone and IDEs don't show errors while browsing it. Signed-off-by: Markus Rudy --- src/agent/policy/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent/policy/Cargo.toml b/src/agent/policy/Cargo.toml index 3562008b91..b17a9ff764 100644 --- a/src/agent/policy/Cargo.toml +++ b/src/agent/policy/Cargo.toml @@ -7,7 +7,7 @@ license.workspace = true [dependencies] # Async runtime -tokio.workspace = true +tokio = { workspace = true, features = ["fs", "io-util"] } anyhow.workspace = true