forked from awslabs/aws-lambda-go-api-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
41 lines (39 loc) · 1.77 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
module github.com/awslabs/aws-lambda-go-api-proxy
go 1.14
require (
github.com/ajg/form v1.5.1 // indirect
github.com/andybalholm/brotli v1.0.1 // indirect
github.com/aws/aws-lambda-go v1.19.1
github.com/fasthttp-contrib/websocket v0.0.0-20160511215533-1f3b11f56072 // indirect
github.com/gin-gonic/gin v1.6.3
github.com/go-chi/chi v4.1.2+incompatible
github.com/go-playground/validator/v10 v10.3.0 // indirect
github.com/gofiber/fiber/v2 v2.1.0
github.com/google/go-querystring v1.0.0 // indirect
github.com/gorilla/mux v1.7.4
github.com/imkira/go-interpol v1.1.0 // indirect
github.com/json-iterator/go v1.1.10 // indirect
github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect
github.com/kataras/golog v0.0.18 // indirect
github.com/kataras/iris/v12 v12.1.8
github.com/klauspost/compress v1.11.1 // indirect
github.com/labstack/echo/v4 v4.1.17
github.com/mattn/go-colorable v0.1.8 // indirect
github.com/microcosm-cc/bluemonday v1.0.3 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/moul/http2curl v1.0.0 // indirect
github.com/onsi/ginkgo v1.14.0
github.com/onsi/gomega v1.10.1
github.com/sergi/go-diff v1.1.0 // indirect
github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/urfave/negroni v1.0.0
github.com/valyala/fasthttp v1.16.0
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 // indirect
github.com/yudai/gojsondiff v1.0.0 // indirect
github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect
github.com/yudai/pp v2.0.1+incompatible // indirect
golang.org/x/sys v0.0.0-20201016160150-f659759dc4ca // indirect
google.golang.org/protobuf v1.25.0 // indirect
)