| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2024-02-27 | Replace err_derive with thiserror | Joakim Hulthe | 1 | -13/+7 | |
| `err_derive` is unmaintained and will probably stop working with rust edition 2024. `thiserror` is almost a drop-in replacement. This commit simply replaces all occurences of `derive(err_derive::Error)` with `derive(thiserror::Error)` and fixes the attributes, but the Error and Display impls should be identical. | |||||
| 2023-08-03 | Migrate translation-converter to err_derive | Linus Färnstrand | 1 | -14/+19 | |
| 2023-01-30 | Run `cargo clippy --fix` with the new Rust 1.67 preferred format | Linus Färnstrand | 1 | -7/+7 | |
| 2022-12-21 | Fix rust formatting | Albin | 1 | -2/+1 | |
| 2022-12-21 | Apply more clippy fixes. | Emīls | 1 | -3/+1 | |
| 2021-05-28 | Fix handling of multi-line messages | Janito Vaqueiro Ferreira Filho | 1 | -15/+162 | |
| A message string can be split among multiple lines, and this was not properly handled. Now it is handled by separate states that join all the lines it finds related to the message. | |||||
| 2021-05-28 | Refactor parser into a clearer state machine | Janito Vaqueiro Ferreira Filho | 1 | -73/+322 | |
| Make it more robust, maintainable and readable. | |||||
| 2021-05-28 | Return errors from parser methods | Janito Vaqueiro Ferreira Filho | 1 | -20/+44 | |
| Avoid panicking inside of `Parser`. | |||||
| 2021-05-28 | Move `Parser` into a separate module | Janito Vaqueiro Ferreira Filho | 1 | -0/+138 | |
| Prepare for refactoring the parsing logic to improve readability and maintainability. | |||||
