-
Updated
May 30, 2022 - Python
serde
Here are 239 public repositories matching this topic...
-
Updated
Apr 12, 2022 - Rust
-
Updated
Apr 19, 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
May 12, 2022 - Rust
-
Updated
May 31, 2022 - Rust
-
Updated
Apr 13, 2022 - Rust
-
Updated
Apr 14, 2022 - Rust
We get the return annotation for free, so we should allow users to do something with it.
-
Updated
Jun 1, 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
May 20, 2022 - Scala
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.