summaryrefslogtreecommitdiff
path: root/support/texlab/crates/bibtex-utils/src/field.rs
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/crates/bibtex-utils/src/field.rs')
-rw-r--r--support/texlab/crates/bibtex-utils/src/field.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/support/texlab/crates/bibtex-utils/src/field.rs b/support/texlab/crates/bibtex-utils/src/field.rs
index d9f3adacab..71bd25f6d0 100644
--- a/support/texlab/crates/bibtex-utils/src/field.rs
+++ b/support/texlab/crates/bibtex-utils/src/field.rs
@@ -1,4 +1,9 @@
+use rustc_hash::FxHashMap;
+
pub mod author;
pub mod date;
pub mod number;
pub mod text;
+
+/// A cache used to accelerate related field parses.
+pub type FieldParseCache = FxHashMap<String, String>; \ No newline at end of file