You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix Params deserialization on serde_json>=1.0.8 (#222)
* Fix Params deserialization on serde_json>=1.0.8
Due to serde-rs/json#389, serde_json no longer calls `deserialize_any` in `deserialize_identifer` (and all other default implemented methods). This causes `Params` to fail to deserialize maps and sequences since it has hinted that it expects an identifier.
This implements `deserialize` correctly, saying that it accepts any type.
* Fix Id deserialization on serde_json>=1.0.8
0 commit comments