From 4bcc8bf0b1d339351530f38c59bb1e8f991fef39 Mon Sep 17 00:00:00 2001 From: damocles Date: Wed, 20 May 2026 16:01:01 +0200 Subject: [PATCH] fix: import anyhow::Context for .context() on serde_json result --- hive-c0re/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hive-c0re/src/main.rs b/hive-c0re/src/main.rs index 4948a95..21c0769 100644 --- a/hive-c0re/src/main.rs +++ b/hive-c0re/src/main.rs @@ -1,7 +1,7 @@ use std::path::PathBuf; use std::sync::Arc; -use anyhow::{Result, bail}; +use anyhow::{Context as _, Result, bail}; use clap::{Parser, Subcommand}; use hive_sh4re::{HostRequest, HostResponse};