internals: Remove derive from test-serde

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.
This commit is contained in:
Tobin C. Harding 2024-07-09 07:50:55 +10:00
parent b392510ec1
commit c2bdc68f5e
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
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 }