-
[OIDC spec](https://openid.net/specs/openid-connect-core-1_0.html#ClaimsParameter):
> claims
> OPTIONAL. This parameter is used to request that specific Claims be returned.
> …
-
The move from quick-xml to instant-xml limited interop between other serialization formats.
I'm wondering if it would be appreciated if I send in a PR that derives ~~`Serialize`~~`Deserialize` for…
-
Hi! I'm just starting to look at this to replace my own hand rolled version, and this looks great. I wonder, have you considered allowing the use of `#[serde(rename=...)]` alongside using your own ren…
-
**Describe the bug**
When calling `arrow_integration_test::schema_to_json(schema)` metadata at the field level are not serialized.
**To Reproduce**
```rust
#[cfg(test)]
mod tests {
use arr…
-
We currently use `serde`'s derive macros to implement `Serialize` on AST types.
We could use `#[generate_derive]` to generate these impls instead.
## Why is that a good thing?
### 1. Reduce c…
-
-
This can be quite useful as deserialization will fail in case an invalid key is added to `uair.toml`. For instance:
```toml
loop-on-end = true
# ...
```
would not work (yes, it's a real life exam…
-
Something like:
- `https://diff.rs/view/serde/1.0.100/files/src/main.rs#L66`
- `https://diff.rs/view/serde/1.0.100/files/src/main.rs#fn:main`
Allows for creating permalink to functions/lines fo…
-
I use command below to build my project as a dylib :
`
ohrs build --arch aarch --release -- -Z build-std=std -Z build-std-features="optimize_for_size"
`
and Cargo.toml below:
```
[package]
name…
-
```
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 😅