You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When strict_arrays are enabled, parsing of some homogeneous arrays fails with unexpected type errors. For instance, parsing:
[test]
array = ["u", "u2"]
Fails with:
toml parse error at line EOF: expected value of type string, but found integer
Given that TOML 1.0 now supports heterogeneous arrays, it might make sense to remove strict_arrays altogether. However, this issue may point to a more general problem with the type detection.
The text was updated successfully, but these errors were encountered:
When
strict_arrays
are enabled, parsing of some homogeneous arrays fails with unexpected type errors. For instance, parsing:Fails with:
Given that TOML 1.0 now supports heterogeneous arrays, it might make sense to remove
strict_arrays
altogether. However, this issue may point to a more general problem with the type detection.The text was updated successfully, but these errors were encountered: