From deb44112883ab7ff932b0ab7c547680a615c7821 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 10 May 2026 15:35:35 +0900 Subject: refactor(clippy): deny clippy::unused_trait_names --- crates/mozart-core/src/repository/installed.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/mozart-core/src/repository/installed.rs') diff --git a/crates/mozart-core/src/repository/installed.rs b/crates/mozart-core/src/repository/installed.rs index 544e948..422f79f 100644 --- a/crates/mozart-core/src/repository/installed.rs +++ b/crates/mozart-core/src/repository/installed.rs @@ -111,7 +111,7 @@ impl InstalledPackages { /// Parse an installed.json document. See [`Self::read`] for the accepted shapes. pub fn from_json_str(content: &str) -> anyhow::Result { - use anyhow::{Context, anyhow}; + use anyhow::{Context as _, anyhow}; let value: serde_json::Value = serde_json::from_str(content).context("invalid installed.json")?; -- cgit v1.3.1