Merge rust-bitcoin/rust-bitcoin#2985: internals: Remove derive from test-serde

c2bdc68f5e internals: Remove derive from test-serde (Tobin C. Harding)

Pull request description:

  During review of #2889 it was noted that we don't need to enable the `derive` feature of `serde` in the `test-serde` feature.

  Do not enable `derive` in the `test-serde` feature.

ACKs for top commit:
  apoelstra:
    ACK c2bdc68f5e nice
  Kixunil:
    ACK c2bdc68f5e

Tree-SHA512: 64def07c2ae93fd98fae10a51b978c9777b43b4e153a4f42c6d7dfa6ba7d65b98a313f08337bb3ace3078a319cc450e23717c481ba631aca5ed84b098dcf36e4
This commit is contained in:
merge-script 2024-07-10 19:15:47 +00:00
commit bf027fc1f2
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ default = []
std = ["alloc"]
alloc = []
test-serde = ["serde/derive", "serde_json", "bincode"]
test-serde = ["serde", "serde_json", "bincode"]
[dependencies]
serde = { version = "1.0.103", default-features = false, optional = true }