aboutsummaryrefslogtreecommitdiff
path: root/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.rs')
-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,