summaryrefslogtreecommitdiff
path: root/support/texlab/crates/base-db/src/config.rs
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/crates/base-db/src/config.rs')
-rw-r--r--support/texlab/crates/base-db/src/config.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/support/texlab/crates/base-db/src/config.rs b/support/texlab/crates/base-db/src/config.rs
index 7c4187f7d2..9814e3e674 100644
--- a/support/texlab/crates/base-db/src/config.rs
+++ b/support/texlab/crates/base-db/src/config.rs
@@ -1,4 +1,3 @@
-use std::path::PathBuf;
use std::time::Duration;
use parser::SyntaxConfig;
@@ -26,7 +25,7 @@ pub struct BuildConfig {
pub aux_dir: String,
pub log_dir: String,
pub pdf_dir: String,
- pub output_filename: Option<PathBuf>,
+ pub output_filename: Option<String>,
}
#[derive(Debug)]