From cc74cdb83481eb8903aaa8dd719e35c804b2298b Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Thu, 29 Feb 2024 08:39:30 -0500 Subject: [PATCH] `deps`: add comment why generator is pinned to 0.7.5 [skip ci] --- Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 163ca79bc..629e24c58 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -116,7 +116,12 @@ gzp = { version = "0.11", default-features = false, features = [ "snappy_default", ] } hashbrown = { version = "0.14", optional = true } + +# pinned to 0.7.5 as 0.7.6 introduces a breaking change +# that prevents enabling the geocode feature +# https://github.com/Xudong-Huang/generator-rs/issues/54 generator = { version = "=0.7.5", optional = true } + indexmap = "2.2" indicatif = "0.17" itertools = "0.12"