Skip to content

Commit 5858b41

Browse files
authored
Merge pull request #141 from siyual-park/echo_slim
Add echo slim
2 parents fc43ae5 + b103db4 commit 5858b41

File tree

5 files changed

+43
-58
lines changed

5 files changed

+43
-58
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ This benchmark suite aims to compare the performance of Go web frameworks. It is
2626
* [default http](https://golang.org/pkg/net/http/)
2727
* [denco](https://github.com/naoina/denco)
2828
* [echo](https://github.com/labstack/echo)
29+
* [echo-slim](https://github.com/partialize/echo-slim)
2930
* [fasthttp-routing](https://github.com/qiangxue/fasthttp-routing)
3031
* [fasthttp/router](https://github.com/fasthttp/router)
3132
* [fasthttp](https://github.com/valyala/fasthttp)

go.mod

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ require (
9191
github.com/go-playground/universal-translator v0.18.0 // indirect
9292
github.com/go-playground/validator/v10 v10.11.0 // indirect
9393
github.com/go-redis/redis/v8 v8.11.5 // indirect
94-
github.com/go-sql-driver/mysql v1.6.0 // indirect
9594
github.com/goccy/go-json v0.9.10 // indirect
9695
github.com/golang/protobuf v1.5.2 // indirect
9796
github.com/google/uuid v1.3.0 // indirect
@@ -107,7 +106,6 @@ require (
107106
github.com/klauspost/compress v1.15.9 // indirect
108107
github.com/labstack/gommon v0.3.1 // indirect
109108
github.com/leodido/go-urn v1.2.1 // indirect
110-
github.com/longbridgeapp/sqlparser v0.3.1 // indirect
111109
github.com/mattn/go-colorable v0.1.12 // indirect
112110
github.com/mattn/go-isatty v0.0.14 // indirect
113111
github.com/mattn/go-runewidth v0.0.13 // indirect
@@ -149,7 +147,10 @@ require (
149147
gorm.io/gorm v1.23.8 // indirect
150148
)
151149

150+
require github.com/partialize/echo-slim/v4 v4.7.2-slim.5
151+
152152
require (
153-
github.com/google/go-cmp v0.5.8 // indirect
153+
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
154154
github.com/magiconair/properties v1.8.6 // indirect
155+
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect
155156
)

0 commit comments

Comments
 (0)