In the data-final-fixes.lua the mod is overriding "advanced-material-processing" and thus removing any technology added by other mods.
With "Quarry" mod it removes "Quarry mk2",
with "Electric Furnaces" (https://mods.factorio.com/mod/Electric%20Furnaces) it removes "Electric steel furnace".
I was able to fix it locally by changing lines after 59:
data.raw["technology"]["advanced-material-processing"].effects = {
{
type = "unlock-recipe",
recipe = "steel-furnace"
},
{
type = "unlock-recipe",
recipe = "low-density-structure"
}
}
to:
table.insert(data.raw["technology"]["advanced-material-processing"].effects,{type = "unlock-recipe",recipe = "low-density-structure"})
Didn't test it but "rocket-silo" technology is probably affected too since the mod overrides it in similar way