From f072e45c9c36b6f50040309a208fac12e4730e3d Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 23 Aug 2022 08:32:27 -0500 Subject: [PATCH] fix(config): Narrow scope of flate check --- src/config.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 016cca7..328facf 100644 --- a/src/config.rs +++ b/src/config.rs @@ -227,8 +227,10 @@ impl TypeEngineConfig { extend_glob: Vec::new(), engine: EngineConfig { dict: Some(DictConfig { + extend_identifiers: maplit::hashmap! { + "flate2".into() => "flate2".into(), + }, extend_words: maplit::hashmap! { - "flate".into() => "flate".into(), "ser".into() => "ser".into(), }, ..Default::default()