summaryrefslogtreecommitdiff
path: root/support/texlab/crates/bibtex-utils/src/field.rs
blob: b10278cf76997632f7493803757314296a87253e (plain)
1
2
3
4
5
6
7
8
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>;