-
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.
-
Since some functions, such as `configuration(&self, items: Vec)` return types that contain `serde_json::Value` it would be useful to re-export this type.
Link to original issue: https://github.com/…
-
Example to reproduce:
```moonbit
fn main {
let a : Json = Number((-1.2).sqrt())
println(@json.stringify(a)) // NaN
}
```
Some other programming languages:
| Language | Code | Output …
-
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 …
-
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…
-
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…
-
## 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…
-
```
print( serde.encode("json", {"foo", nil, "bar"}) )
```
Expected Output:
> ["foo",null,"bar"]
Actual Output:
> ["foo"]
p.s. toml encoding gives me a "unsupported rust type" error 😅