Skip to content

Commit c83fbfd

Browse files
committed
go mod tidy and downgrade Go compiler version to 1.20
no benchmarked package uses 1.21+ features, so it doesn't really matter (however I have only 1.20 locally)
1 parent 9c42444 commit c83fbfd

File tree

2 files changed

+17
-109
lines changed

2 files changed

+17
-109
lines changed

go.mod

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/smallnest/go-web-framework-benchmark
22

3-
go 1.21
3+
go 1.20
44

55
require (
66
clevergo.tech/clevergo v0.6.0
@@ -29,6 +29,7 @@ require (
2929
github.com/gopulse/pulse v1.1.0
3030
github.com/gorilla/mux v1.8.1
3131
github.com/gowww/router v1.0.0
32+
github.com/indigo-web/indigo v0.15.7
3233
github.com/ivpusic/neo v0.3.0
3334
github.com/julienschmidt/httprouter v1.3.0
3435
github.com/kataras/muxie v1.1.2
@@ -95,13 +96,15 @@ require (
9596
github.com/goccy/go-json v0.10.2 // indirect
9697
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
9798
github.com/golang/gddo v0.0.0-20210115222349-20d68f94ee1f // indirect
98-
github.com/golang/protobuf v1.5.3 // indirect
9999
github.com/google/uuid v1.4.0 // indirect
100100
github.com/gorilla/websocket v1.5.1 // indirect
101101
github.com/gravitational/trace v1.3.1 // indirect
102102
github.com/grokify/html-strip-tags-go v0.1.0 // indirect
103103
github.com/hashicorp/golang-lru v1.0.2 // indirect
104104
github.com/imdario/mergo v0.3.16 // indirect
105+
github.com/indigo-web/chunkedbody v0.1.0 // indirect
106+
github.com/indigo-web/iter v0.1.0 // indirect
107+
github.com/indigo-web/utils v0.6.1 // indirect
105108
github.com/ivpusic/go-clicolor v0.0.0-20150828210804-23f0b77f328a // indirect
106109
github.com/ivpusic/golog v0.0.0-20170608213328-28640bee649f // indirect
107110
github.com/ivpusic/httpcheck v0.0.0-20170215120547-c49b174389ac // indirect
@@ -118,7 +121,6 @@ require (
118121
github.com/mattn/go-colorable v0.1.13 // indirect
119122
github.com/mattn/go-isatty v0.0.20 // indirect
120123
github.com/mattn/go-runewidth v0.0.15 // indirect
121-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
122124
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
123125
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
124126
github.com/modern-go/reflect2 v1.0.2 // indirect
@@ -151,7 +153,7 @@ require (
151153
go.opentelemetry.io/otel/sdk v1.21.0 // indirect
152154
go.opentelemetry.io/otel/trace v1.21.0 // indirect
153155
golang.org/x/arch v0.6.0 // indirect
154-
golang.org/x/crypto v0.16.0 // indirect
156+
golang.org/x/crypto v0.17.0 // indirect
155157
golang.org/x/sys v0.15.0 // indirect
156158
golang.org/x/term v0.15.0 // indirect
157159
golang.org/x/text v0.14.0 // indirect

0 commit comments

Comments
 (0)