-
Updated
Oct 19, 2020 - Python
serde
Here are 156 public repositories matching this topic...
-
Updated
Oct 8, 2020 - Rust
-
Updated
Sep 13, 2020 - 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
Jul 17, 2020 - Rust
-
Updated
Oct 8, 2020 - Rust
We get the return annotation for free, so we should allow users to do something with it.
-
Updated
Oct 24, 2020 - Rust
-
Updated
Sep 8, 2020 - Rust
Hello, I think this project is not JSON only specific, right? If possible, can we add support to scalapb? Thanks!
-
Updated
Oct 24, 2020 - Java
-
Updated
Aug 19, 2020 - Rust
-
Updated
Oct 8, 2020 - Python
Support for enums
We should make Rust enums out of Go code like:
https://github.com/aws/aws-lambda-go/blob/master/events/dynamodb.go#L127
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.