Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The TOML format has a restriction that if a table itself contains tables, all keys with non-table values must be emitted first. This led to the following error: $ echo '{"a": {}, "b": 1}' | rq -T [ERROR] [rq] Encountered: TOML serialize error [ERROR] [rq] Caused by: values must be emitted before tables Fix this by using tables_last to output the tables after other keys. This affects all output formats that serialize using serde. The ordering is unimportant in the other formats, so that is harmless. The performance impact should be small.
- Loading branch information