-
Integrate [easyjson](https://github.com/zerodha/easyjson) to improve JSON parsing performance by generating marshaling/unmarshaling code at compile time instead of using reflection.
-
**Description**
We propose removing `easyjson` and refactoring the SDK to use the built-in `encoding/json` package. Although `easyjson` provides performance benefits, it has limitations when dealin…
-
Hello,
I would like to bring to your attention a concern regarding one of the dependencies used in the swaggo/swag library, specifically the easyjson library.
The easyjson library is developed b…
-
Hi!
I try to make a http request from WASM module running on [wazero](https://github.com/tetratelabs/wazero) and got an error^
```
Netdev not set
```
I try to use netdev package but can't f…
-
run.go
```
package main
import (
"fmt"
"github.com/mailru/easyjson"
// "github.com/mailru/easyjson/gen"
)
//easyjson:json
type Person struct {
Name s…
-
#### Version and Runtime
latest
```
Paste the output of `vegeta -version` here.
If you are not running the latest version of Vegeta, please try upgrading because your issue may have already be…
-
github.com/mailru/easyjson
-
Not a big request. Just to make it more streamlined.
When installing from source: Before `make vegeta` one needs to make sure to have `easyjson` installed as it is required by vegeta.
A single lin…
-
We go to great lengths to avoid reflection in many parts of the library... but then use MarshalJSON and UnmarshalJSON, which have significant performance overhead.
Should we use e.g. https://github…
-
Here https://github.com/mailru/easyjson/blob/c120ca7ced6051261161ce15e8f1542a4b2567fc/parser/pkgpath.go#L122 we have getPkgPathFromGOPATH function
```go
func getPkgPathFromGOPATH(fname string, is…