aboutsummaryrefslogtreecommitdiffstats
path: root/askama_derive/Cargo.toml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Version bump askama_derive to 0.12.1Libravatar Dirkjan Ochtman2023-03-211-1/+1
|
* Upgrade to syn 2Libravatar Dirkjan Ochtman2023-03-201-1/+1
|
* Replace `toml_edit` with `basic-toml`Libravatar René Kijewski2023-02-211-2/+2
|
* Use `toml_edit` instead of `toml`Libravatar René Kijewski2023-01-301-2/+2
| | | | | Since version 0.6, `toml` is a wrapper around `toml_edit`, and the more basic library already meets our needs.
* Apply clippy suggestions for 1.67 (#769)Libravatar Dirkjan Ochtman2023-01-301-1/+2
|
* Implement basic hyper integrationLibravatar René Kijewski2022-07-251-0/+1
| | | | | | | The integration is based on askama_gotham. There is no specific trait to convert an arbitrary T to `hyper::Response`, so I used `From<Template> for hyper::Response`.
* Move code generation into askama_deriveLibravatar René Kijewski2022-05-241-15/+22
|
* Moved Features into derive (#662)Libravatar Andrew Wheeler(Genusis)2022-04-061-0/+16
| | | | | * Moved Features into derive, Updated Askama versions to 0.11 * Lock minimal versions to 0.11.2
* Update version numbersLibravatar René Kijewski2022-03-231-2/+2
|
* Reduce askama_derive to a single re-exportLibravatar René Kijewski2022-03-231-2/+0
| | | | | | | | | | All the hard work in askama_derive was actually done in askama_shared. This PR removes the back-and-forth interaction between the two crates. Now askama_derive is a single re-export of `#[derive(Template)]` which has to be done in a proc_macro crate. This most likely means that askama_derive is "final", unless another derive template needs to be introduced in the future.
* Move handling of integrations into askama_sharedLibravatar René Kijewski2022-03-231-13/+0
| | | | | | | Before this PR the handling of integrations was done both by askama_shared and askama_derive. This diff lets askama_shared do the work. This will prevent problems like #629, when both packages might come out of sync.
* Bump version for askama_deriveLibravatar Dirkjan Ochtman2022-02-161-2/+2
|
* Fix json/yaml featuresLibravatar Jannik Obermann2022-01-151-0/+2
|
* Remove the iron integration from generatorLibravatar René Kijewski2022-01-061-1/+0
| | | | | | | Issue #527 removed the askama_iron package, but not the integration if someone uses askama_derive's feature with "iron". The old askama_iron crate uses askama v0.10, so it will still work.
* Merge pull request #562 from djc/prepare-0.12Libravatar René Kijewski2021-11-301-3/+2
|\ | | | | Prepare 0.12
| * Bump version numbersLibravatar Dirkjan Ochtman2021-11-241-2/+2
| |
| * Remove authors from Cargo metadata (see RFC 3052)Libravatar Dirkjan Ochtman2021-11-241-1/+0
| |
* | Add Axum integrationLibravatar Michael Alyn Miller2021-11-271-0/+1
|/
* Bump version numbers in anticipation of beta releaseLibravatar Dirkjan Ochtman2021-08-211-2/+2
|
* Enable config support in askama_shared build dependencyLibravatar Jonas Platte2021-08-071-0/+2
| | | | Fixes using askama with the new Cargo feature resolver and a configuration file.
* Bump versions to fix semver problemLibravatar Dirkjan Ochtman2020-11-171-2/+2
|
* Bump version numbers for askama and askama_deriveLibravatar Dirkjan Ochtman2020-11-171-2/+2
|
* Use `syn::Error::to_compile_error` and add trybuild ui test (#374)Libravatar msrd02020-11-021-1/+0
|
* Bump askama_derive dependency on askama_sharedLibravatar Dirkjan Ochtman2020-07-281-1/+1
|
* Bump version numbersLibravatar Dirkjan Ochtman2020-07-281-1/+1
|
* Add mendes integrationLibravatar Dirkjan Ochtman2020-07-281-0/+1
|
* Bump versions to prepare for askama_tide releaseLibravatar Dirkjan Ochtman2020-07-141-2/+2
|
* Bump dependency versions to force the latest versionLibravatar Dirkjan Ochtman2020-07-141-1/+1
|
* Bump askama_derive version to 0.10.1Libravatar Dirkjan Ochtman2020-07-141-1/+1
|
* alphabetize frameworksLibravatar Jacob Rothstein2020-07-141-3/+3
|
* askama tideLibravatar Jacob Rothstein2020-07-141-0/+1
|
* Disable default features of `askama_shared` in `askama_derive`Libravatar Yuki Okushi2020-07-021-1/+1
|
* Reference READMEs in crate metadataLibravatar Dirkjan Ochtman2020-06-301-0/+1
|
* Bump version numbersLibravatar Dirkjan Ochtman2020-06-301-2/+2
|
* Move parser into askama_sharedLibravatar Dirkjan Ochtman2020-01-291-3/+0
|
* Add support for warpLibravatar Bjørn Madsen2020-01-291-0/+1
|
* Bump version numbers to 0.9.0Libravatar Dirkjan Ochtman2020-01-151-2/+2
|
* Upgrade to nom 5Libravatar Dirkjan Ochtman2019-11-111-1/+3
|
* Switch to syn/quote/proc_macro2 1.0Libravatar Dirkjan Ochtman2019-08-141-3/+3
|
* Bump versions in anticipation of 0.8.0 releaseLibravatar Dirkjan Ochtman2019-01-171-1/+1
|
* Implement `IntoResponse` for `Template`, allowing them to be used in ↵Libravatar Kellen Frodelius-Fujimoto2018-12-101-0/+1
| | | | `gotham` handlers.
* Upgrade to 2018 editionLibravatar Dirkjan Ochtman2018-12-081-0/+1
|
* Clean up unused featuresLibravatar Dirkjan Ochtman2018-11-071-4/+3
|
* Bump version number to 0.8.0 for API changeLibravatar Dirkjan Ochtman2018-10-121-1/+1
|
* Bump version to 0.7.2Libravatar Dirkjan Ochtman2018-10-081-2/+2
|
* Update syn requirement from 0.14 to 0.15Libravatar dependabot[bot]2018-09-071-1/+1
| | | | | | | Updates the requirements on [syn](https://github.com/dtolnay/syn) to permit the latest version. - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/commits/0.15.1) Signed-off-by: dependabot[bot] <support@dependabot.com>
* Bump versions to 0.7.1Libravatar Dirkjan Ochtman2018-07-231-2/+2
|
* Add optional implementation for actix_web's Responder traitLibravatar Ryan McGrath2018-07-221-0/+1
|
* Bump version numbers to 0.7.0Libravatar Dirkjan Ochtman2018-06-221-2/+2
|
* Port parser to nom 4Libravatar Dirkjan Ochtman2018-06-151-1/+1
|