From e5b629e0c50c1c7907a533060913b00b126ccef1 Mon Sep 17 00:00:00 2001 From: daimond113 <72147841+daimond113@users.noreply.github.com> Date: Thu, 2 Jan 2025 19:09:57 +0100 Subject: [PATCH] feat: remove unused errors --- src/download.rs | 4 ---- src/source/git/mod.rs | 8 -------- src/source/git_index.rs | 8 -------- 3 files changed, 20 deletions(-) diff --git a/src/download.rs b/src/download.rs index 32bac18..db1bf54 100644 --- a/src/download.rs +++ b/src/download.rs @@ -282,9 +282,5 @@ pub mod errors { /// Error getting target #[error("failed to get target")] GetTargetFailed(#[from] Box), - - /// Error writing package contents - #[error("failed to write package contents")] - WriteFailed(#[source] std::io::Error), } } diff --git a/src/source/git/mod.rs b/src/source/git/mod.rs index ce47490..ca0341f 100644 --- a/src/source/git/mod.rs +++ b/src/source/git/mod.rs @@ -642,10 +642,6 @@ pub mod errors { #[error("error creating Wally target")] GetTarget(#[from] crate::source::wally::compat_util::errors::GetTargetError), - /// No manifest was found - #[error("no manifest found in repository {0}")] - NoManifest(Box), - /// An error occurred opening the Git repository #[error("error opening Git repository for url {0}")] OpenRepo(Box, #[source] gix::open::Error), @@ -669,10 +665,6 @@ pub mod errors { #[error("error parsing object to tree for repository {0}")] ParseObjectToTree(Box, #[source] gix::object::peel::to_kind::Error), - /// An error occurred parsing the pesde manifest to UTF-8 - #[error("error parsing the manifest for repository {0} to UTF-8")] - ParseManifest(#[source] std::string::FromUtf8Error), - /// An error occurred while serializing the index file #[error("error serializing the index file for repository {0}")] SerializeIndex(Box, #[source] toml::ser::Error), diff --git a/src/source/git_index.rs b/src/source/git_index.rs index af58109..b8208e4 100644 --- a/src/source/git_index.rs +++ b/src/source/git_index.rs @@ -266,14 +266,6 @@ pub mod errors { #[derive(Debug, Error)] #[non_exhaustive] pub enum ReadFile { - /// Error opening the repository - #[error("error opening repository at {0}")] - Open(PathBuf, #[source] Box), - - /// Error reading tree from repository - #[error("error getting tree from repository at {0}")] - Tree(PathBuf, #[source] Box), - /// Error looking up entry in tree #[error("error looking up entry {0} in tree")] Lookup(String, #[source] gix::object::find::existing::Error),