aboutsummaryrefslogtreecommitdiffstats
path: root/askama_actix (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-10-03Advertise Discord channel instead of GitterLibravatar Dirkjan Ochtman1-1/+1
2023-09-29Add MSRV checking in CILibravatar Dirkjan Ochtman1-1/+1
Bump MSRV to 1.65 for the use of let .. else.
2023-03-03Bump versions for Askama 0.12 (#784)Libravatar Dirkjan Ochtman1-2/+2
2023-01-30Apply clippy suggestions for 1.67 (#769)Libravatar Dirkjan Ochtman1-1/+2
2022-09-21Update dependenciesLibravatar Dirkjan Ochtman1-1/+1
2022-07-25Update actix-test requirement from =0.1.0-beta.13 to =0.1.0Libravatar dependabot[bot]1-1/+1
Updates the requirements on [actix-test](https://github.com/actix/actix-web) to permit the latest version. - [Release notes](https://github.com/actix/actix-web/releases) - [Changelog](https://github.com/actix/actix-web/blob/master/CHANGES.md) - [Commits](https://github.com/actix/actix-web/compare/test-v0.1.0-beta.13...v0.1.0) --- updated-dependencies: - dependency-name: actix-test dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
2022-06-07Expose features in integration cratesLibravatar René Kijewski1-0/+10
2022-03-23Update version numbersLibravatar René Kijewski1-3/+2
2022-02-25Actix Web v4.0 is hereLibravatar René Kijewski2-3/+5
2022-02-16Update actix-test requirement from =0.1.0-beta.12 to =0.1.0-beta.13Libravatar dependabot[bot]1-1/+1
Updates the requirements on [actix-test](https://github.com/actix/actix-web) to permit the latest version. - [Release notes](https://github.com/actix/actix-web/releases) - [Changelog](https://github.com/actix/actix-web/blob/master/CHANGES.md) - [Commits](https://github.com/actix/actix-web/compare/test-v0.1.0-beta.12...test-v0.1.0-beta.13) --- updated-dependencies: - dependency-name: actix-test dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
2022-02-01actix: upgrade to actix 4-rc.1Libravatar Dirkjan Ochtman2-3/+3
2022-01-07Use Template::MIME_TYPE instead of extensionLibravatar René Kijewski1-7/+4
2022-01-06Add `#![forbid(unsafe_code)]` to all crates except askama_escapeLibravatar René Kijewski1-0/+1
2022-01-06Add `#![deny(unreachable_pub)]` to all cratesLibravatar René Kijewski1-0/+1
2022-01-06No needless boxing of the errorLibravatar René Kijewski1-3/+22
2022-01-06Combine imports from the same moduleLibravatar René Kijewski1-3/+1
2022-01-05Update for actix-web betaLibravatar René Kijewski3-25/+22
2022-01-05Use strict matching for prereleasesLibravatar Dirkjan Ochtman1-4/+5
2022-01-04askama_actix: revert to actix-web v3 for releaseLibravatar Dirkjan Ochtman3-14/+13
2021-12-15Use a separate trait for object safety (#579)Libravatar Dirkjan Ochtman1-3/+2
This is relatively major change to the main trait's API. For context, I always started from the concept of monomorphized traits, but later several contributors asked about object safety. At that point I made `Template` object-safe, and then even later added a `SizedTemplate` to make some things easier for people who don't need object safety. However, having object-safety in the primary trait is bad for performance (a substantial number of calls into the virtual `Write` trait is relatively slow), and I don't think those who don't need object safety should pay for the cost of having it. Additionally, I feel using associated consts for the extension and size hint is more idiomatic than having accessor methods. I don't know why I didn't use these from the start -- maybe associated consts didn't exist yet, or I didn't yet know how/when to use them. Askama is pretty old at this point...
2021-12-14updated for actix-web 4.0.0-beta.14Libravatar CrunkLord4201-2/+2
2021-12-01Add missing license files to askama_actix and askama_mendesLibravatar René Kijewski2-0/+2
2021-11-24Bump version numbersLibravatar Dirkjan Ochtman1-1/+1
2021-11-24Remove authors from Cargo metadata (see RFC 3052)Libravatar Dirkjan Ochtman1-1/+0
2021-11-11Prepare for actix-web v4 (#553)Libravatar Sergey Pashinin3-14/+15
2021-08-21Bump version numbers in anticipation of beta releaseLibravatar Dirkjan Ochtman1-1/+1
2021-07-01Stop eliding lifetimes in pathsLibravatar Dirkjan Ochtman1-0/+2
2021-02-15Rename askama_actix trait method as suggested by clippyLibravatar Dirkjan Ochtman3-7/+7
By bumping the dependency versions for askama and askama_shared, this should be safe.
2020-12-21Disable askama's default features in web framework cratesLibravatar Randati1-1/+1
Without disabling these default features, askama's default features get automatically enabled when web framework specific crates are included in the project.
2020-10-18askama_actix: bump version to 0.11.1Libravatar Dirkjan Ochtman1-1/+1
2020-09-25Do not include default actix-web featuresLibravatar Rob Ede1-1/+1
closes #360
2020-09-11actix: upgrade to actix 3Libravatar Dirkjan Ochtman1-2/+2
2020-06-30Tweak dependency on futures for Actix integrationLibravatar Dirkjan Ochtman2-1/+8
2020-06-30Reference READMEs in crate metadataLibravatar Dirkjan Ochtman1-0/+1
2020-06-30Add README files for subcratesLibravatar Dirkjan Ochtman1-0/+9
2020-06-30Bump version numbersLibravatar Dirkjan Ochtman1-2/+2
2020-02-08Adapt to new warnings and formattingLibravatar Dirkjan Ochtman1-5/+3
2020-01-29Move Actix-Web integration into separate askama_actix crateLibravatar Dirkjan Ochtman4-0/+98