summaryrefslogtreecommitdiff
path: root/support/texlab/crates/syntax/src/latexmkrc.rs
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/crates/syntax/src/latexmkrc.rs')
-rw-r--r--support/texlab/crates/syntax/src/latexmkrc.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/support/texlab/crates/syntax/src/latexmkrc.rs b/support/texlab/crates/syntax/src/latexmkrc.rs
new file mode 100644
index 0000000000..41cc5b9bbf
--- /dev/null
+++ b/support/texlab/crates/syntax/src/latexmkrc.rs
@@ -0,0 +1,5 @@
+#[derive(Debug, Clone, Default)]
+pub struct LatexmkrcData {
+ pub aux_dir: Option<String>,
+ pub out_dir: Option<String>,
+}