forked from awslabs/aws-lambda-go-api-proxy
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgo.mod
46 lines (44 loc) · 2.11 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
42
43
44
45
46
module github.com/LF-Engineering/aws-lambda-go-api-proxy
go 1.12
require (
github.com/Bowery/prompt v0.0.0-20190419144237-972d0ceb96f5 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/Masterminds/vcs v1.13.1 // indirect
github.com/armon/go-radix v1.0.0 // indirect
github.com/aws/aws-lambda-go v0.0.0-20190129190457-dcf76fe64fb6
github.com/boltdb/bolt v1.3.1 // indirect
github.com/dchest/safefile v0.0.0-20151022103144-855e8d98f185 // indirect
github.com/gin-contrib/sse v0.0.0-20170109093832-22d885f9ecc7
github.com/gin-gonic/gin v0.0.0-20180126034611-783c7ee9c14e
github.com/go-chi/chi v0.0.0-20180202194135-e223a795a06a
github.com/golang/dep v0.5.4 // indirect
github.com/golang/protobuf v1.4.0
github.com/google/shlex v0.0.0-20181106134648-c34317bd91bf // indirect
github.com/google/uuid v0.0.0-20171129191014-dec09d789f3d
github.com/gorilla/context v1.1.1
github.com/gorilla/mux v0.0.0-20180120075819-c0091a029979
github.com/jmank88/nuts v0.4.0 // indirect
github.com/json-iterator/go v0.0.0-20180128142709-bca911dae073
github.com/kardianos/govendor v1.0.9 // indirect
github.com/labstack/echo v3.3.10+incompatible
github.com/labstack/gommon v0.2.8 // indirect
github.com/mattn/go-colorable v0.1.1 // indirect
github.com/mattn/go-isatty v0.0.5
github.com/nightlyone/lockfile v1.0.0 // indirect
github.com/onsi/ginkgo v0.0.0-20180119174237-747514b53ddd
github.com/onsi/gomega v1.3.0
github.com/pelletier/go-toml v1.7.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sdboyer/constext v0.0.0-20170321163424-836a14457353 // indirect
github.com/stretchr/testify v1.3.0 // indirect
github.com/ugorji/go v0.0.0-20180129160544-d2b24cf3d3b4
github.com/urfave/negroni v0.0.0-20180130044549-22c5532ea862
github.com/valyala/fasttemplate v1.0.1 // indirect
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b
golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a // indirect
golang.org/x/sys v0.0.0-20200420163511-1957bb5e6d1f
golang.org/x/text v0.3.0
golang.org/x/tools v0.0.0-20200424195722-358506031216 // indirect
gopkg.in/go-playground/validator.v8 v8.18.2
gopkg.in/yaml.v2 v2.2.8
)