summaryrefslogtreecommitdiffstats
path: root/src/conf.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/conf.rs')
-rw-r--r--src/conf.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/conf.rs b/src/conf.rs
index cc281f0..8aeb8e3 100644
--- a/src/conf.rs
+++ b/src/conf.rs
@@ -1,4 +1,4 @@
-use serde_derive::{ Serialize, Deserialize };
+use serde_derive::Deserialize;
use std::path::{ PathBuf, Path };
use toml::de;
use log::{ error };
@@ -9,7 +9,7 @@ use std::io::ErrorKind;
use crate::backends::{ Backend, PythonBackend, ClangBackend };
-#[derive(Debug, Serialize, Deserialize, Default)]
+#[derive(Debug, Deserialize, Default)]
pub struct Conf {
#[serde(skip)]
path: Option<PathBuf>,