summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-06-13 06:42:31 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-06-13 06:42:31 +0200
commitdbc85218f6da32123a290639a784162fa4169f4a (patch)
tree72f162a0df3a552afce6168603dc7ef191d7e26f
parentfeat(new): Ensure that file names are ASCII only (diff)
downloadlpm-dbc85218f6da32123a290639a784162fa4169f4a.tar.gz
lpm-dbc85218f6da32123a290639a784162fa4169f4a.zip
feat(config_file): Allow specifying the name of the `main.tex` file
-rw-r--r--src/config_file.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config_file.rs b/src/config_file.rs
index 2244893..f9ea659 100644
--- a/src/config_file.rs
+++ b/src/config_file.rs
@@ -2,6 +2,7 @@ use serde_derive::{Deserialize, Serialize};
 
 #[derive(Deserialize, Serialize)]
 pub struct Config {
+    pub main_file: String,
     pub templates: Template,
 }