diff options
author | Gusted <williamzijl7@hotmail.com> | 2022-02-06 21:38:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-06 20:38:14 +0000 |
commit | 9712f7d622803bba5793ad3df754f3333729e0f3 (patch) | |
tree | 777fb6a87d9d7685b69d1bdc41f6ca2d52b9f00b /go.mod | |
parent | 6ada05940e3df7c5ca71b2723199215db4562ac2 (diff) | |
download | gitea-9712f7d622803bba5793ad3df754f3333729e0f3.tar.gz gitea-9712f7d622803bba5793ad3df754f3333729e0f3.zip |
Future proof for 1.18 (#18644)
- Update json-iterator/go to handle 1.18's new memory model with slices.
- Don't panic while running gitea with go 1.18
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ require ( github.com/hashicorp/golang-lru v0.5.4 github.com/huandu/xstrings v1.3.2 github.com/jaytaylor/html2text v0.0.0-20200412013138-3577fbdbcff7 - github.com/json-iterator/go v1.1.11 + github.com/json-iterator/go v1.1.12 github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 github.com/kevinburke/ssh_config v1.1.0 // indirect github.com/keybase/go-crypto v0.0.0-20200123153347-de78d2cb44f4 |