From d878e5b3678e3354740a584fa9cc239f8181fa67 Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Tue, 8 Apr 2025 14:45:47 -0700 Subject: [PATCH] chore(hashes): update serde dependency to workspace Update serde from 1.0 to 1.0.103 to align with versions used in other workspace crates. This makes the dependency constraint match reality since it was almost always implicitly raised by the other crates. --- hashes/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hashes/Cargo.toml b/hashes/Cargo.toml index f1d67003a..99caab0b0 100644 --- a/hashes/Cargo.toml +++ b/hashes/Cargo.toml @@ -24,7 +24,7 @@ small-hash = [] [dependencies] internals = { package = "bitcoin-internals", path = "../internals" } hex = { package = "hex-conservative", version = "0.3.0", default-features = false, optional = true } -serde = { version = "1.0", default-features = false, optional = true } +serde = { version = "1.0.103", default-features = false, optional = true } [dev-dependencies] serde_test = "1.0"