Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Implement error propagation expression: `?` (#590) | René Kijewski | 2022-01-28 | 1 | -5/+10 |
| | | | | | | This change allows using the operator `?` in askama expressions. It works like the same operator in Rust: if a `Result` is `Ok`, it is unwrapped. If it is an error, then the `render()` method fails with this error value. | ||||
* | Remove now unused match arms | Dirkjan Ochtman | 2020-05-17 | 1 | -2/+0 |
| | |||||
* | Properly annotate non-exhaustive enum | Dirkjan Ochtman | 2020-05-17 | 1 | -6/+1 |
| | |||||
* | Error::description() will be deprecated soon | Dirkjan Ochtman | 2020-01-29 | 1 | -12/+2 |
| | |||||
* | Add optional support for yaml filter (see #192) | Dirkjan Ochtman | 2019-01-17 | 1 | -1/+15 |
| | |||||
* | Rename deprecate method Error::cause() | Dirkjan Ochtman | 2019-01-12 | 1 | -2/+2 |
| | |||||
* | Use 2018 edition idioms | Dirkjan Ochtman | 2018-12-08 | 1 | -2/+2 |
| | |||||
* | Fix typo in serde_json feature | Dirkjan Ochtman | 2018-12-07 | 1 | -6/+6 |
| | |||||
* | Fix formatting with cargo fmt | Dirkjan Ochtman | 2018-06-21 | 1 | -9/+7 |
| | |||||
* | Converted error-chain based error to enum based error | Philipp Korber | 2018-06-04 | 1 | -0/+95 |
- now implements `Send` + `Sync` + `'static` - still implements `std::error::Error`, `Debug`, `Display`, `From<std::fmt::Error>`, `From<::serde_json::Error>` |