Merge rust-bitcoin/rust-bitcoin#4321: hashes: update serde dependency to match workspace

d878e5b367 chore(hashes): update serde dependency to workspace (Nick Johnson)

Pull request description:

  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.

  I ran the `update-lock-files`, but no changes, which makes sense since other crates in the workspace bumped the version.

  A bit more info in https://github.com/rust-bitcoin/rust-bitcoin/issues/4313#issuecomment-2786281653 with talk about minimal version testing.

ACKs for top commit:
  tcharding:
    ACK d878e5b367
  apoelstra:
    ACK d878e5b3678e3354740a584fa9cc239f8181fa67; successfully ran local tests

Tree-SHA512: 3fe3eaddb58c54ac809f025e3a95f02c4c15f6209a3d17c9262923bdcbf8a094975d150c76e85de25a68e6e7574aa7e3fe40d4707bd4d159bd8cc97f36be0ee9
This commit is contained in:
merge-script 2025-04-10 19:48:44 +00:00
commit b4326f0806
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ small-hash = []
[dependencies] [dependencies]
internals = { package = "bitcoin-internals", path = "../internals" } internals = { package = "bitcoin-internals", path = "../internals" }
hex = { package = "hex-conservative", version = "0.3.0", default-features = false, optional = true } 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] [dev-dependencies]
serde_test = "1.0" serde_test = "1.0"