From a8ad0902d3fa6226bf02456a4155cc9d5198a861 Mon Sep 17 00:00:00 2001 From: Tamo Date: Mon, 31 Jul 2023 11:08:27 +0200 Subject: [PATCH] Fix the milli crate Milli was using the serde feature of either without enabling it first, thus it wasn't working --- milli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/milli/Cargo.toml b/milli/Cargo.toml index 80b0a5f86..6de915a4d 100644 --- a/milli/Cargo.toml +++ b/milli/Cargo.toml @@ -21,7 +21,7 @@ charabia = { version = "0.8.1", default-features = false } concat-arrays = "0.1.2" crossbeam-channel = "0.5.8" deserr = "0.5.0" -either = "1.8.1" +either = { version = "1.8.1", features = ["serde"] } flatten-serde-json = { path = "../flatten-serde-json" } fst = "0.4.7" fxhash = "0.2.1"