From 78edf2e33d6fb9f530f2f889f8e3d2dd638fb797 Mon Sep 17 00:00:00 2001 From: Simon Chen Date: Tue, 12 Mar 2024 17:30:19 +0100 Subject: [PATCH] unpin serde dependency --- Cargo.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3bf76db12578b..ea0be3b2599d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -621,7 +621,10 @@ sha3 = "0.9.1" siphasher = "0.3.10" # For more information about why we are pinned to 1.0.152, see this issue: # https://github.com/aptos-labs/aptos-core/issues/10424 -serde = { version = "=1.0.152", features = ["derive", "rc"] } +# +# Simon: From the ticket, this impacts only test suites, should be safe to unpin this, +# otherwise, we need downgrade our other dependencies to 1.0.152. +serde = { version = "1.0.152", features = ["derive", "rc"] } serde_bytes = "0.11.6" serde_json = { version = "1.0.81", features = ["preserve_order", "arbitrary_precision"] } # Note: arbitrary_precision is required to parse u256 in JSON serde_repr = "0.1"