use GoJay to marshal JSON

GoJay doesn't use reflection to marshal JSON. This allows dramatically
faster encoding, as well as saving a large number of allocations.
This commit is contained in:
Marten Seemann 2020-01-19 19:19:53 +07:00
parent 2e59206a1e
commit 572ef44cf2
7 changed files with 356 additions and 279 deletions

3
go.mod
View file

@ -5,8 +5,9 @@ go 1.13
require (
github.com/alangpierce/go-forceexport v0.0.0-20160317203124-8f1d6941cd75
github.com/cheekybits/genny v1.0.0
github.com/francoispqt/gojay v1.2.13
github.com/golang/mock v1.4.0
github.com/golang/protobuf v1.3.0
github.com/golang/protobuf v1.3.1
github.com/marten-seemann/chacha20 v0.2.0
github.com/marten-seemann/qpack v0.1.0
github.com/marten-seemann/qtls v0.7.1