From 015c0df0f41f9aa20556dadd282899afb2e2123d Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Sun, 1 Dec 2024 16:36:01 -0500 Subject: [PATCH] aya-build: enable anyhow/std This is needed before Rust 1.81. --- aya-build/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aya-build/Cargo.toml b/aya-build/Cargo.toml index a4b37b6a..18573f98 100644 --- a/aya-build/Cargo.toml +++ b/aya-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aya-build" -version = "0.1.0" +version = "0.1.1" description = "Build-time support for aya projects" authors.workspace = true license.workspace = true @@ -9,5 +9,5 @@ homepage.workspace = true edition.workspace = true [dependencies] -anyhow = { workspace = true } +anyhow = { workspace = true, default-features = true } cargo_metadata = { workspace = true }