Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2020-01-29 | Move parser into askama_shared | 1 | -3/+3 | ||
2020-01-12 | Support escaping in string literals | 1 | -20/+30 | ||
Do not attempt to parse escape sequences thoroughly. Instead let the Rust compiler to check the string literals and provide nice error messages if necessary. | |||||
2020-01-03 | Support char literals | 1 | -2/+30 | ||
2020-01-02 | Clean up clippy warnings | 1 | -16/+13 | ||
2019-11-11 | Migrate to non-macro combinators | 1 | -541/+709 | ||
2019-11-11 | Upgrade to nom 5 | 1 | -94/+90 | ||
2019-10-09 | Remove use of deprecated nom macro | 1 | -1/+1 | ||
2019-10-08 | Add support for boolean literals | 1 | -0/+7 | ||
2019-07-11 | Implement selected clippy recommendations. | 1 | -1/+1 | ||
2019-05-04 | Simplify parser with nom's list combinators | 1 | -121/+44 | ||
2019-04-18 | WIP: Add raw block | 1 | -1/+22 | ||
2019-03-18 | Allow Rust macro calls in more places (see #226) | 1 | -2/+2 | ||
2019-01-08 | Allow trailing commas in tuples (#188) | 1 | -0/+1 | ||
2019-01-08 | Add support for #![feature(non_ascii_idents)] | 1 | -2/+7 | ||
2019-01-04 | Add support for tuple | 1 | -2/+22 | ||
2018-12-13 | fix rust macro arguments | 1 | -6/+57 | ||
2018-12-12 | Allow using brackets for enums in `match` | 1 | -4/+50 | ||
2018-12-08 | Use 2018 edition idioms | 1 | -2/+2 | ||
2018-12-08 | Upgrade to 2018 edition | 1 | -3/+3 | ||
2018-10-07 | Add Rust macro support at templates | 1 | -1/+12 | ||
2018-10-05 | Fix deprecated tag s! in favor of tag! | 1 | -83/+83 | ||
2018-10-05 | Fix fmt at parser.rs | 1 | -28/+42 | ||
2018-10-05 | Add changing delimiters support | 1 | -68/+106 | ||
2018-07-02 | Clean up according to clippy suggestions | 1 | -1/+1 | ||
2018-06-23 | Add support for range operators (see #95) | 1 | -1/+21 | ||
2018-06-23 | Add support for Index operation (see #95) | 1 | -1/+16 | ||
2018-06-22 | Disallow user-defined macros named 'super' | 1 | -9/+14 | ||
2018-06-21 | Clean up clippy suggestions | 1 | -1/+1 | ||
2018-06-15 | Port parser to nom 4 | 1 | -67/+79 | ||
2018-05-14 | Fix copy/paste error in whitespace handling | 1 | -2/+2 | ||
2018-04-27 | Add support for unary operators (fixes #83) | 1 | -1/+11 | ||
2018-04-17 | Properly handle whitespace around comments (fixes #79) | 1 | -3/+4 | ||
2018-04-12 | Isolate proc-macro dependency to the proc macro | 1 | -0/+0 | ||
The dependency of askama on askama_shared on syn on libproc_macro used to mean libproc_macro would be dynamically linked into any crate using askama. We want only askama_derive to have a runtime dependency on proc macro. This commit moves all proc macro code from askama_shared into askama_derive so that the askama crate no longer dynamically links libproc_macro. | |||||
2018-04-12 | Handle a lack of whitespace after match block (fixes #76) | 1 | -4/+5 | ||
2017-12-25 | Properly disable rustfmt in parser module | 1 | -2/+1 | ||
2017-11-21 | Disabling rustfmt locally doesn't work in stable Rust | 1 | -2/+2 | ||
2017-11-21 | Don't restyle code in parser module | 1 | -0/+4 | ||
2017-11-02 | Support matching custom enums | 1 | -2/+44 | ||
2017-11-02 | support literals in match arms | 1 | -7/+47 | ||
2017-11-02 | support else in match block | 1 | -0/+15 | ||
2017-11-02 | implement basic match functionality | 1 | -0/+54 | ||
2017-10-22 | Make empty string literals work | 1 | -1/+1 | ||
2017-10-20 | Tighten up parser code for path expressions | 1 | -4/+2 | ||
2017-10-20 | Add support for array literals (fixes #59) | 1 | -0/+18 | ||
2017-10-15 | Add scope when importing macros | 1 | -4/+11 | ||
2017-10-04 | Handle path expressions (fixes #56) | 1 | -0/+18 | ||
2017-09-26 | Add support for importing template files with macros (#51) | 1 | -0/+13 | ||
* Fix review comments for macro imports | |||||
2017-09-10 | Add support for tuple indexing in templates | 1 | -3/+7 | ||
2017-09-06 | Code cleanups as suggested by Clippy | 1 | -4/+4 | ||
2017-09-05 | Stop mutating parsed AST for code generation | 1 | -1/+0 | ||