From bdf31e7c093b6a3c74155d140125978cb3f6a4dc Mon Sep 17 00:00:00 2001 From: tyranron Date: Fri, 14 Jul 2023 21:08:00 +0300 Subject: [PATCH] Upgrade Cargo deps - `cucumber` crate to 0.20 version - `typed-builder` crate to 0.15 version - `syn` crate to 2.0 version --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 02b3d72..7cf536a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ textwrap = "0.16" thiserror = "1.0.20" # "parser" feature dependencies. -typed-builder = { version = "0.11", optional = true } +typed-builder = { version = "0.15", optional = true } # "serde" feature enables ability to serialize/deserialize AST. serde = { version = "1.0.103", features = ["derive"], optional = true } @@ -45,10 +45,10 @@ heck = "0.4" quote = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -syn = "1.0" +syn = "2.0" [dev-dependencies] -cucumber = "0.19" +cucumber = "0.20" futures = "0.3.5" serde_json = "1.0.78"