From 69322a5c77476b05b7c4fce0ec29a7c0c13a2278 Mon Sep 17 00:00:00 2001 From: Arend van Beelen jr Date: Wed, 27 Sep 2023 10:14:16 +0200 Subject: [PATCH] Bump pretty_assertions dependency (#200) --- examples/example-protocol/Cargo.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/examples/example-protocol/Cargo.toml b/examples/example-protocol/Cargo.toml index e44b34d9..2ccb66ba 100644 --- a/examples/example-protocol/Cargo.toml +++ b/examples/example-protocol/Cargo.toml @@ -5,18 +5,18 @@ name = "example-protocol" version = "0.1.0" [dependencies] -bytes = {version = "1", features = ["serde"]} -fp-bindgen = {path = "../../fp-bindgen", features = [ +bytes = { version = "1", features = ["serde"] } +fp-bindgen = { path = "../../fp-bindgen", features = [ "bytes-compat", "http-compat", "serde-bytes-compat", "time-compat", "generators", -]} +] } http = "0.2" once_cell = "1" -pretty_assertions = "0.7" -redux-example = {path = "../redux-example"} -serde = {version = "1.0", features = ["derive"]} +pretty_assertions = "1" +redux-example = { path = "../redux-example" } +serde = { version = "1.0", features = ["derive"] } serde_bytes = "0.11" -time = {version = "0.3", features = ["macros", "serde-human-readable"]} +time = { version = "0.3", features = ["macros", "serde-human-readable"] }