Skip to content
Snippets Groups Projects
Commit c2bc3787 authored by vlorentz's avatar vlorentz
Browse files

Enable serde's derive feature

It should be needed in `src/properties/*.rs` to serialize/deserialize `Vec*` structs,
but for some reason it isn't for Rust >= 1.82 (or >= 1.81?)
parent cfc3f7d3
No related branches found
No related tags found
1 merge request!691Enable serde's derive feature
Pipeline #12483 passed
......@@ -59,7 +59,7 @@ const_panic = { version = "0.2.8", optional = true }
const-hex = { version = "1.11.1", optional = true }
# serde
serde = { version = "1.0.189", optional = true }
serde = { version = "1.0.189", features = ["derive"], optional = true }
serde_json = { version = "1.0.108", optional = true }
# sorting
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment