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 <mr@edgeless.systems>
This commit is contained in:
Markus Rudy
2026-04-14 16:51:15 +02:00
parent 47dea24409
commit 5c362adcff

View File

@@ -7,7 +7,7 @@ license.workspace = true
[dependencies]
# Async runtime
tokio.workspace = true
tokio = { workspace = true, features = ["fs", "io-util"] }
anyhow.workspace = true