From b31255ad6dabae39992ce5ac093ec695bd2aa4b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 04:29:38 +0000 Subject: [PATCH] Update nom requirement from 7 to 8 Updates the requirements on [nom](https://github.com/rust-bakery/nom) to permit the latest version. - [Changelog](https://github.com/rust-bakery/nom/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-bakery/nom/compare/7.0.0...8.0.0) --- updated-dependencies: - dependency-name: nom dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- askama_parser/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/askama_parser/Cargo.toml b/askama_parser/Cargo.toml index 92727a91..6df1e2ab 100644 --- a/askama_parser/Cargo.toml +++ b/askama_parser/Cargo.toml @@ -14,7 +14,7 @@ edition = "2021" rust-version = "1.65" [dependencies] -nom = { version = "7", default-features = false, features = ["alloc"] } +nom = { version = "8", default-features = false, features = ["alloc"] } [dev-dependencies] criterion = "0.5"