-
If we depend on `serde_json` for serializing anchors we will never be able to remove it since it will always be needed to do migrations. Currently there is only one widely used anchor. We can just us…
-
Errors flood the system. I would like to save old logs to opfs, etc., so it would be great if you could add a serde function.
-
### What happened?
It looks like `insta` does not support serializing the type `BTreeMap` when K is a custom enum. `serde_json` does that fine, though.
### Reproduction steps
Here is an example th…
-
I am implementing `#[attr(default = )]`, and my value can be multi-typed depending on what it gets attached to. The `serde_json::Value` is the format I will eventually have to work with. Darling seem …
-
Hi,
I'm quite new to rust and hope this issue is not due to my lack of experience.
I found that when I create a new Jwks, generate and add a new key to it, deserialize the Jwks to a file and then …
-
### Component
serde
### What version of Alloy are you on?
alloy v0.6.4
### Operating System
Linux
### Describe the bug
Deserializing a TxEnvelop produces a confusing error message: `Error("data…
-
Currently, the unit tests for `Deserialize`/`Serialize` implementation are based on `serde_json`.
[`serde_test`](https://crates.io/crates/serde_test) might to be a more fitting alternative to be us…
-
## Is your feature request related to a problem? Please describe 👀
Global prefs are a useful feature to allow system admins to control how the system operates nationally (store prefs do a simil…
-
## Bevy version
0.14.2
## What you did
1. Define unit struct with reflection and ser/de.
2. Use `TypedReflectDeserializer` to deserialize raw JSON into a reflection box.
3. Use `T::from_reflect` to…
-
Both `9e-05` and `9e-5` mean the same thing in scientific notation, as leading zeros in the exponent are optional.
```rust
use serde_json::{from_str, json, to_string, Value};
fn main() {
let…