diff --git a/clippy.toml b/clippy.toml deleted file mode 100644 index 550d475..0000000 --- a/clippy.toml +++ /dev/null @@ -1 +0,0 @@ -msrv = "1.63" diff --git a/rustfmt.toml b/rustfmt.toml deleted file mode 100644 index 828232f..0000000 --- a/rustfmt.toml +++ /dev/null @@ -1 +0,0 @@ -format_strings = false diff --git a/src/matching/mod.rs b/src/matching/mod.rs index cefe10f..d19e37d 100644 --- a/src/matching/mod.rs +++ b/src/matching/mod.rs @@ -73,6 +73,7 @@ lazy_static! { static ref GRAPHS: HashMap<&'static str, &'static HashMap>>> = { let mut table = HashMap::with_capacity(4); table.insert("qwerty", &*super::adjacency_graphs::QWERTY); + table.insert("qwertz", &*super::adjacency_graphs::QWERTZ); table.insert("dvorak", &*super::adjacency_graphs::DVORAK); table.insert("keypad", &*super::adjacency_graphs::KEYPAD); table.insert("mac_keypad", &*super::adjacency_graphs::MAC_KEYPAD);