aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Bossing <info@maxbossing.de>2025-07-15 14:50:58 +0200
committerMax Bossing <info@maxbossing.de>2025-07-15 14:50:58 +0200
commit3733ab769ee7af18f60ea6dcf5b954a915d9b9b7 (patch)
tree7dbdd8b225d02f0ceeae71247ffcc93c793085c5
parent75ed52cb761d90b5e5a96717a4d00ef57003994d (diff)
fix(config): remove unused trait "Debug"
-rw-r--r--src/config.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.rs b/src/config.rs
index 6fd790a..6fed687 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -2,7 +2,7 @@ use std::env;
use std::path::PathBuf;
use serde::Deserialize;
-#[derive(Deserialize, Debug)]
+#[derive(Deserialize)]
pub struct Config {
#[serde(default = "default_dots_dir")]
pub dots_dir: PathBuf,
@@ -10,7 +10,7 @@ pub struct Config {
pub dots: Vec<Dot>,
}
-#[derive(Deserialize, Debug)]
+#[derive(Deserialize)]
pub struct Dot {
#[serde(rename = "src")]
pub source: PathBuf,