aboutsummaryrefslogtreecommitdiffstats
path: root/askama_shared/Cargo.toml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* add urlencode filterLibravatar João Oliveira2020-03-301-2/+3
|
* Move code generation into askama_sharedLibravatar Dirkjan Ochtman2020-01-291-0/+1
|
* Move input module into askama_sharedLibravatar Dirkjan Ochtman2020-01-291-0/+2
|
* Move parser into askama_sharedLibravatar Dirkjan Ochtman2020-01-291-0/+3
|
* Bump version to 0.9.1Libravatar Dirkjan Ochtman2020-01-271-1/+1
|
* Show all filters in docs.rsLibravatar Dirkjan Ochtman2020-01-271-0/+3
|
* Bump version numbers to 0.9.0Libravatar Dirkjan Ochtman2020-01-151-2/+2
|
* Make dependencies optional where possibleLibravatar Dirkjan Ochtman2020-01-151-4/+11
|
* Modernize and simplify importsLibravatar Dirkjan Ochtman2020-01-151-2/+1
|
* Update toml requirement from 0.4 to 0.5Libravatar dependabot[bot]2019-03-181-1/+1
| | | | | | | Updates the requirements on [toml](https://github.com/alexcrichton/toml-rs) to permit the latest version. - [Release notes](https://github.com/alexcrichton/toml-rs/releases) - [Commits](https://github.com/alexcrichton/toml-rs/compare/0.4.0...0.5.0) Signed-off-by: dependabot[bot] <support@dependabot.com>
* Add optional support for yaml filter (see #192)Libravatar Dirkjan Ochtman2019-01-171-0/+1
|
* Bump versions in anticipation of 0.8.0 releaseLibravatar Dirkjan Ochtman2019-01-171-2/+2
|
* Upgrade to 2018 editionLibravatar Dirkjan Ochtman2018-12-081-0/+1
|
* Add filesizeformat filterLibravatar youmouse2018-11-161-0/+1
|
* Clean up unused featuresLibravatar Dirkjan Ochtman2018-11-071-7/+0
|
* Create askama_escape crateLibravatar bott2018-11-071-0/+1
|
* Bump version to 0.7.2Libravatar Dirkjan Ochtman2018-10-081-1/+1
|
* Add absolute value filterLibravatar bott2018-09-221-0/+1
|
* Bump versions to 0.7.1Libravatar Dirkjan Ochtman2018-07-231-1/+1
|
* Add optional implementation for actix_web's Responder traitLibravatar Ryan McGrath2018-07-221-0/+1
|
* Add partial support for multiple template dirsLibravatar mash2018-07-101-2/+4
|
* Bump version numbers to 0.7.0Libravatar Dirkjan Ochtman2018-06-221-1/+1
|
* Converted error-chain based error to enum based errorLibravatar Philipp Korber2018-06-041-1/+0
| | | | | | | - now implements `Send` + `Sync` + `'static` - still implements `std::error::Error`, `Debug`, `Display`, `From<std::fmt::Error>`, `From<::serde_json::Error>`
* Version bump to 0.6.2Libravatar Dirkjan Ochtman2018-04-181-1/+1
|
* Bump version numbers to 0.6.1Libravatar Dirkjan Ochtman2018-04-121-1/+1
|
* Isolate proc-macro dependency to the proc macroLibravatar David Tolnay2018-04-121-3/+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.
* Bump version numbers to 0.6.0Libravatar Dirkjan Ochtman2018-04-121-1/+1
|
* Upgrade to latest syn and quoteLibravatar Dirkjan Ochtman2018-04-021-2/+2
|
* Upgrade to syn-0.12 and quote-0.4Libravatar Dirkjan Ochtman2018-01-091-2/+2
|
* Bump version number to 0.5.0Libravatar Dirkjan Ochtman2017-09-071-1/+1
|
* Update dependency on error-chain to 0.11Libravatar Dirkjan Ochtman2017-09-061-1/+1
|
* Add package metadata for new askama_shared crateLibravatar Dirkjan Ochtman2017-09-061-0/+4
|
* Bump version number to 0.4.0Libravatar Dirkjan Ochtman2017-09-061-1/+1
|
* Move most of the code into new askama_shared crateLibravatar Dirkjan Ochtman2017-08-271-0/+19
This makes it possible to share code between askama and askama_derive.