Fix the milli crate

Milli was using the serde feature of either without enabling it first, thus it wasn't working
This commit is contained in:
Tamo 2023-07-31 11:08:27 +02:00
parent 2dfbb6813a
commit a8ad0902d3

View File

@ -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"