From 3afa15164d18a8db78daaca17491e924b728c125 Mon Sep 17 00:00:00 2001 From: bion howard Date: Wed, 19 Mar 2025 15:37:52 -0400 Subject: [PATCH] fix toml features field in the filters chapter of the book the features field needs to be a list here for this code to be copypasta-ready --- book/src/filters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/filters.md b/book/src/filters.md index e9add972..92d469f3 100644 --- a/book/src/filters.md +++ b/book/src/filters.md @@ -420,7 +420,7 @@ The following filters can be enabled by requesting the respective feature in the ```toml [dependencies] -askama = { version = "0.11.2", features = "serde_json" } +askama = { version = "0.12", features = ["serde_json"] } ``` ### `json` | `tojson`