Skip to content

Commit

Permalink
unpin serde dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
so-schen committed Mar 12, 2024
1 parent 1baba3e commit 78edf2e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 78edf2e

Please sign in to comment.