-
Updated
Feb 8, 2022 - Python
serde
Here are 218 public repositories matching this topic...
-
Updated
Jan 10, 2022 - Rust
-
Updated
Feb 10, 2022 - Rust
From our benchmarks we can see that we are consistently slower than everyone else when serializing/deserializing boolean values. We should fix that.
orjson is using an unsafe block to create a reference to a boolean:
https://github.com/ijl/orjson/blob/03d55e99a953ce93cedc05f03e4b63b0bcbbcc7a/src/decode.rs#L81-L96
This avoids additional allocations.
For comparison, this is our code at the
-
Updated
Jan 22, 2022 - Rust
-
Updated
Feb 19, 2022 - Rust
-
Updated
Feb 19, 2022 - Rust
-
Updated
Sep 29, 2021 - Rust
We get the return annotation for free, so we should allow users to do something with it.
-
Updated
Feb 14, 2022 - Python
We use example files inside the generated module, and also outside of that module. It might make sense to move the fixtures directory outside the generated module.
-
Updated
Jul 12, 2021 - Rust
-
Updated
Feb 14, 2022 - Scala
-
Updated
Jan 7, 2022 - Java
Improve this page
Add a description, image, and links to the serde topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the serde topic, visit your repo's landing page and select "manage topics."
In the following string validation, the error message points to the close quote after "test123". It would be nicer to point to the opening quote instead.