aboutsummaryrefslogtreecommitdiffstats
path: root/src/error.rs
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-11-30 03:11:38 -0600
committerToby Vincent <tobyv13@gmail.com>2022-11-30 03:11:38 -0600
commit47fe04dfb634eba3c24403013cf92960237cf761 (patch)
treec3fc4e3f8a480af8fb9020e000cdc391c840eaa2 /src/error.rs
parentfa956cc1598f69c81d6db54b4e2e8f5f35cd9b23 (diff)
revert: remove figment from the lib (moved to bin)
Diffstat (limited to 'src/error.rs')
-rw-r--r--src/error.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/error.rs b/src/error.rs
index f22cff2..d923642 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -3,9 +3,6 @@ pub type Result<T> = std::result::Result<T, Error>;
#[derive(thiserror::Error, Debug)]
pub enum Error {
#[error(transparent)]
- Config(#[from] figment::error::Error),
-
- #[error(transparent)]
Ignore(#[from] ignore::Error),
#[error(transparent)]