- Update error derivation approach to use thiserror.
- Fix a panic in the Python parser. When a pipe (
|
) occurred in the format string, the formatter would panic with"unknown conversion flag"
due to an invalid Regex.
- Remove use of deprecated
mem::uninitialized
. - Add messages to invocations of
unreachable!()
.
Implement std::error::Error
for dynfmt::Error
(courtesy of @cecton).
Fixes broken parsing of python mapping names (e.g. %(name)s
)
Initial Release