Closed jayvdb closed 3 weeks ago
Why does the out file say it doesnt exist - of course it doesnt exist ... ;)
My bad. Fixed on 223bc72a0021fea026073af5c39e5c9198658333 (master). Please run cargo install --force recast
or cargo install --git https://github.com/Altair-Bueno/recast
to update
Error mentions both TOML and YAML at the same time?
Internally, recast uses serde_toml::Value, as serde_yaml::Value
and serde_json::Value
cannot be consistently deserialized into TOML (toml requires key/values to be sorted so subtables appear last). Something similar happens if you try to deserialize null
, as TOML doesn't have null values. Haven't found time to write my own Value alternative that solves these issues yet.
Thank you Altair!
Why does the out file say it doesnt exist - of course it doesnt exist ... ;)
Error mentions both TOML and YAML at the same time?