Update README.md

This commit is contained in:
Masaaki Goshima 2021-02-09 23:56:13 +09:00 committed by GitHub
parent 266c968d66
commit 29dd8efd6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -27,14 +27,14 @@ Replace import statement from `encoding/json` to `github.com/goccy/go-json`
| name | encoder | decoder | compatible with `encoding/json` | | name | encoder | decoder | compatible with `encoding/json` |
| :----: | :------: | :-----: | :-----------------------------: | | :----: | :------: | :-----: | :-----------------------------: |
| encoding/json | ○ | ○ | N/A | | encoding/json | yes | yes | N/A |
| [json-iterator/go](https://github.com/json-iterator/go) | ○ | ○ | △ | | [json-iterator/go](https://github.com/json-iterator/go) | yes | yes | partial |
| [easyjson](https://github.com/mailru/easyjson) | ○ | ○ | ✗ | | [easyjson](https://github.com/mailru/easyjson) | yes | yes | no |
| [gojay](https://github.com/francoispqt/gojay) | ○ | ○ | ✗ | | [gojay](https://github.com/francoispqt/gojay) | yes | yes | no |
| [segmentio/encoding/json](https://github.com/segmentio/encoding/tree/master/json) | ○ | ○ | ○ | | [segmentio/encoding/json](https://github.com/segmentio/encoding/tree/master/json) | yes | yes | yes |
| [jettison](https://github.com/wI2L/jettison) | ○ | ✗ | ✗ | | [jettison](https://github.com/wI2L/jettison) | yes | no | no |
| [simdjson-go](https://github.com/minio/simdjson-go) | ✗ | ○ | ✗ | | [simdjson-go](https://github.com/minio/simdjson-go) | no | yes | no |
| go-json | ○ | ○ | ○ | | goccy/go-json | yes | yes | yes |
- `json-iterator/go` isn't compatible with `encoding/json` in many ways, but it hasn't been supported for a long time. - `json-iterator/go` isn't compatible with `encoding/json` in many ways, but it hasn't been supported for a long time.