From f3eab5b2f0cd72bce5f9088590c117cb81825152 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Jan 2022 14:06:21 +0000 Subject: [PATCH] Update peg requirement from 0.6.3 to 0.8.0 Updates the requirements on [peg](https://github.com/kevinmehall/rust-peg) to permit the latest version. - [Release notes](https://github.com/kevinmehall/rust-peg/releases) - [Commits](https://github.com/kevinmehall/rust-peg/compare/0.6.3...0.8.0) --- updated-dependencies: - dependency-name: peg dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7f12e00..4af8245 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ required-features = ["build-binary"] [dependencies] base64 = "0.13.0" -peg = "0.6.3" +peg = "0.8.0" proptest = "0.10.1" rand = "0.7.3" # intentionally not upgrading to avoid ./target/... path collision warning serde = { version = "1.0.118", features = ["derive"] }